From d0b5005a023da1e436665fc1d795b20246dd9d80 Mon Sep 17 00:00:00 2001 From: NRK Date: Thu, 28 Oct 2021 11:43:36 +0600 Subject: -0 sends NULL separated file-list to key-handler with this change `-0` is turned into a more generic switch which can be used to send NULL-separated file-list to the key-handler as well. this also means `-0` no longer implicitly enables `-o` Closes: https://github.com/nsxiv/nsxiv/issues/140 --- options.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'options.c') diff --git a/options.c b/options.c index d9eb59d..2d313de 100644 --- a/options.c +++ b/options.c @@ -52,7 +52,7 @@ void parse_options(int argc, char **argv) _options.from_stdin = false; _options.to_stdout = false; - _options.stdout_separator = '\n'; + _options.using_null = false; _options.recursive = false; _options.startnum = 0; @@ -181,8 +181,7 @@ void parse_options(int argc, char **argv) _options.zoom = (float) n / 100.0; break; case '0': - _options.stdout_separator = '\0'; - _options.to_stdout = true; /* -0 implies -o */ + _options.using_null = true; break; } } -- cgit v1.2.3-54-g00ecf