diff options
Diffstat (limited to 'env.c')
-rw-r--r-- | env.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -221,6 +221,11 @@ char *visbuf(const char *buf) *tp++ = '\\'; *tp++ = '"'; buf++; } + else if (*buf == '\\') + { + *tp++ = '\\'; *tp++ = '\\'; + buf++; + } else if (isprint(*buf) || *buf == ' ') *tp++ = *buf++; else if (*buf == '\n') |