From bc0d2e7d6931476e633ec73c559ffb81be72a26e Mon Sep 17 00:00:00 2001 From: ceriel Date: Wed, 25 Sep 1991 10:28:06 +0000 Subject: [PATCH] Fixed problem in gen_str.c: back-slash escape --- mach/sparc/ce/back.src/gen_str.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);