From 02ce6999c7b4fed215a3ed58bd418609a1cc18b2 Mon Sep 17 00:00:00 2001 From: johanknol Date: Fri, 18 May 2001 17:32:09 +0000 Subject: [PATCH] Implemented the fix of Dario Vecchio git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@825 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- src/SDCCglue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SDCCglue.c b/src/SDCCglue.c index a1d0f57c..3a5e4e3a 100644 --- a/src/SDCCglue.c +++ b/src/SDCCglue.c @@ -395,7 +395,7 @@ printChar (FILE * ofile, char *s, int plen) i = 60; while (i && *s && pplen < plen) { - if (*s < ' ' || *s == '\"') + if (*s < ' ' || *s == '\"' || *s=='\\') { *p = '\0'; if (p != buf) -- 2.47.2