diff options
-rw-r--r-- | miscutils/less.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/miscutils/less.c b/miscutils/less.c index 97ab1e6f8..51ef2a59d 100644 --- a/miscutils/less.c +++ b/miscutils/less.c | |||
@@ -1814,7 +1814,11 @@ int less_main(int argc, char **argv) | |||
1814 | * -s: condense many empty lines to one | 1814 | * -s: condense many empty lines to one |
1815 | * (used by some setups for manpage display) | 1815 | * (used by some setups for manpage display) |
1816 | */ | 1816 | */ |
1817 | getopt32(argv, "EMmN~I" IF_FEATURE_LESS_TRUNCATE("S") /*ignored:*/"s"); | 1817 | getopt32(argv, "EMmN~I" |
1818 | IF_FEATURE_LESS_TRUNCATE("S") | ||
1819 | IF_FEATURE_LESS_RAW("R") | ||
1820 | /*ignored:*/"s" | ||
1821 | ); | ||
1818 | argv += optind; | 1822 | argv += optind; |
1819 | num_files = argc - optind; | 1823 | num_files = argc - optind; |
1820 | files = argv; | 1824 | files = argv; |