diff options
Diffstat (limited to 'ex/ex_global.c')
| -rw-r--r-- | ex/ex_global.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ex/ex_global.c b/ex/ex_global.c index 54c6411d8799..cf3c8c9ce7cb 100644 --- a/ex/ex_global.c +++ b/ex/ex_global.c @@ -112,11 +112,12 @@ usage: ex_emsg(sp, cmdp->cmd->usage, EXM_USAGE); *t = '\0'; break; } - if (p[0] == '\\') + if (p[0] == '\\') { if (p[1] == delim) ++p; else if (p[1] == '\\') *t++ = *p++; + } *t++ = *p++; } |
