From: ceriel Date: Wed, 25 Sep 1991 10:28:06 +0000 (+0000) Subject: Fixed problem in gen_str.c: back-slash escape X-Git-Tag: release-5-5~821 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=bc0d2e7d6931476e633ec73c559ffb81be72a26e;p=ack.git Fixed problem in gen_str.c: back-slash escape --- diff --git a/mach/sparc/ce/back.src/gen_str.c b/mach/sparc/ce/back.src/gen_str.c index 1bb48d404..34e4e5f1e 100644 --- a/mach/sparc/ce/back.src/gen_str.c +++ b/mach/sparc/ce/back.src/gen_str.c @@ -13,7 +13,7 @@ int n; while (n--) { c= *s++; - if (isprint(c) && c != '"') + if (isprint(c) && c != '"' && c != '\\') fprint(codefile, "%c", c); else fprint(codefile, "\\%03o", c);