From: KlzXS Date: Fri, 22 Oct 2021 18:27:12 +0000 (+0200) Subject: Revert searching for a leading space X-Git-Tag: v4.4~35^2~1 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=1022340aa15b39a4a3543c89a4e1f49d898c0e41;p=nnn.git Revert searching for a leading space %j and %J will be replaced by a file path. File paths should be quoted to ensure proper interpretation by the shell --- diff --git a/src/nnn.c b/src/nnn.c index c66ced4a..8d8cd404 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -5379,9 +5379,8 @@ static bool prompt_run(void) cnt_j = 0; next = cmdline; - while ((next = strstr(next, " %j"))) { + while ((next = strstr(next, "%j"))) { ++cnt_j; - ++next; // skip the space we don't need it // replace %j with {} for xargs later next[0] = '{'; @@ -5392,9 +5391,8 @@ static bool prompt_run(void) cnt_J = 0; next = cmdline; - while (!cnt_j && (next = strstr(next, " %J"))) { + while (!cnt_j && (next = strstr(next, "%J"))) { ++cnt_J; - ++next; // skip the space we don't need it tmplen = xstrsncpy(tmpcmd, cmdline, next - cmdline + 1) - 1; tmplen += xstrsncpy(tmpcmd + tmplen, "${0} ${@}", sizeof("${0} ${@}"));