diff options
-rw-r--r-- | util-linux/more.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/util-linux/more.c b/util-linux/more.c index eea69da06..a830dcbc1 100644 --- a/util-linux/more.c +++ b/util-linux/more.c | |||
@@ -84,11 +84,12 @@ int more_main(int argc UNUSED_PARAM, char **argv) | |||
84 | /* Parse options */ | 84 | /* Parse options */ |
85 | /* Accepted but ignored: */ | 85 | /* Accepted but ignored: */ |
86 | /* -d Display help instead of ringing bell */ | 86 | /* -d Display help instead of ringing bell */ |
87 | /* -e Exit immediately after writing the last line */ | ||
87 | /* -f Count logical lines (IOW: long lines are not folded) */ | 88 | /* -f Count logical lines (IOW: long lines are not folded) */ |
88 | /* -l Do not pause after any line containing a ^L (form feed) */ | 89 | /* -l Do not pause after any line containing a ^L (form feed) */ |
89 | /* -s Squeeze blank lines into one */ | 90 | /* -s Squeeze blank lines into one */ |
90 | /* -u Suppress underlining */ | 91 | /* -u Suppress underlining */ |
91 | getopt32(argv, "dflsu"); | 92 | getopt32(argv, "deflsu"); |
92 | argv += optind; | 93 | argv += optind; |
93 | 94 | ||
94 | /* Another popular pager, most, detects when stdout | 95 | /* Another popular pager, most, detects when stdout |