mirror of
https://github.com/tmux/tmux.git
synced 2025-09-02 05:21:10 +00:00
Ignore line continuation when escaped as \\, from Simon Nicolussi.
This commit is contained in:
4
cfg.c
4
cfg.c
@ -109,7 +109,9 @@ load_cfg(const char *path, struct cmd_ctx *ctxin, struct causelist *causes)
|
||||
len = strlen(line);
|
||||
if (len > 0 && line[len - 1] == '\\') {
|
||||
line[len - 1] = '\0';
|
||||
continue;
|
||||
/* Ignore escaped backslash at EOL. */
|
||||
if (len > 1 && line[len - 2] != '\\')
|
||||
continue;
|
||||
}
|
||||
buf = line;
|
||||
line = NULL;
|
||||
|
Reference in New Issue
Block a user