comparison src/utils.cc @ 1215:c56c0565afd5

[project @ 1995-04-06 05:12:20 by jwe]
author jwe
date Thu, 06 Apr 1995 05:13:57 +0000
parents b6360f2d4fa6
children e1ddfb12566d
comparison
equal deleted inserted replaced
1214:0bf4d2b7def4 1215:c56c0565afd5
800 undo_string_escapes (char *s) 800 undo_string_escapes (char *s)
801 { 801 {
802 ostrstream buf; 802 ostrstream buf;
803 803
804 char *t; 804 char *t;
805 while (t = undo_string_escape (*s++)) 805 while ((t = undo_string_escape (*s++)))
806 buf << t; 806 buf << t;
807 buf << ends; 807 buf << ends;
808 808
809 return buf.str (); 809 return buf.str ();
810 } 810 }