summaryrefslogtreecommitdiffstats
path: root/htop.c
diff options
context:
space:
mode:
authorMichael F. Schönitzer <michael@schoenitzer.de>2020-09-16 03:01:36 +0200
committercgzones <cgzones@googlemail.com>2020-09-18 12:04:21 +0200
commit1061bd719aa2e6762958c59bdf88aa3ee961999c (patch)
treefede480573ce4ae62686d195480ff365477df24b /htop.c
parent40441dca8e22f30297b45f78a58013e9face3935 (diff)
Change option '-m' to '-M' for consistency of cli
`-m` was added as short option for `--no-mouse`, this is inconsistence to the rest of the cli since otherwise the short options to disable a feature are capital letters. Therefore this commit renames the option to `-M`. This commit also documents the option in the man page.
Diffstat (limited to 'htop.c')
-rw-r--r--htop.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/htop.c b/htop.c
index 8399d73e..070f581f 100644
--- a/htop.c
+++ b/htop.c
@@ -38,7 +38,7 @@ static void printHelpFlag() {
fputs("htop " VERSION "\n"
"Released under the GNU GPL.\n\n"
"-C --no-color Use a monochrome color scheme\n"
- "-m --no-mouse Disable the mouse\n"
+ "-M --no-mouse Disable the mouse\n"
"-d --delay=DELAY Set the delay between updates, in tenths of seconds\n"
"-h --help Print this help screen\n"
"-s --sort-key=COLUMN Sort by COLUMN (try --sort-key=help for a list)\n"
@@ -90,7 +90,7 @@ static CommandLineSettings parseArguments(int argc, char** argv) {
{"user", optional_argument, 0, 'u'},
{"no-color", no_argument, 0, 'C'},
{"no-colour", no_argument, 0, 'C'},
- {"no-mouse", no_argument, 0, 'm'},
+ {"no-mouse", no_argument, 0, 'M'},
{"no-unicode", no_argument, 0, 'U'},
{"tree", no_argument, 0, 't'},
{"pid", required_argument, 0, 'p'},
@@ -99,7 +99,7 @@ static CommandLineSettings parseArguments(int argc, char** argv) {
int opt, opti=0;
/* Parse arguments */
- while ((opt = getopt_long(argc, argv, "hvmCs:td:u::Up:", long_opts, &opti))) {
+ while ((opt = getopt_long(argc, argv, "hvMCs:td:u::Up:", long_opts, &opti))) {
if (opt == EOF) break;
switch (opt) {
case 'h':
@@ -150,7 +150,7 @@ static CommandLineSettings parseArguments(int argc, char** argv) {
case 'C':
flags.useColors = false;
break;
- case 'm':
+ case 'M':
flags.enableMouse = false;
break;
case 'U':

© 2014-2024 Faster IT GmbH | imprint | privacy policy