diff options
-rw-r--r-- | util-linux/more.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/util-linux/more.c b/util-linux/more.c index 95cbdd994..07836e29d 100644 --- a/util-linux/more.c +++ b/util-linux/more.c | |||
@@ -73,7 +73,16 @@ int more_main(int argc UNUSED_PARAM, char **argv) | |||
73 | 73 | ||
74 | INIT_G(); | 74 | INIT_G(); |
75 | 75 | ||
76 | argv++; | 76 | /* Parse options */ |
77 | /* Accepted but ignored: */ | ||
78 | /* -d Display help instead of ringing bell is pressed */ | ||
79 | /* -f Count logical lines (IOW: long lines are not folded) */ | ||
80 | /* -l Do not pause after any line containing a ^L (form feed) */ | ||
81 | /* -s Squeeze blank lines into one */ | ||
82 | /* -u Suppress underlining */ | ||
83 | getopt32(argv, "dflsu"); | ||
84 | argv += optind; | ||
85 | |||
77 | /* Another popular pager, most, detects when stdout | 86 | /* Another popular pager, most, detects when stdout |
78 | * is not a tty and turns into cat. This makes sense. */ | 87 | * is not a tty and turns into cat. This makes sense. */ |
79 | if (!isatty(STDOUT_FILENO)) | 88 | if (!isatty(STDOUT_FILENO)) |