43 lines
2.3 KiB
Diff
43 lines
2.3 KiB
Diff
Index: src/prog/gpm-root.y
|
|
===================================================================
|
|
--- src/prog/gpm-root.y.orig 2010-09-08 17:00:51.668569297 +0200
|
|
+++ src/prog/gpm-root.y 2010-09-08 17:00:52.032543941 +0200
|
|
@@ -870,7 +870,6 @@ int usage(void)
|
|
" -m <number-or-name> modifier to use\n"
|
|
" -u inhibit user configuration files\n"
|
|
" -D don't auto-background and run as daemon\n"
|
|
- " -V <verbosity-delta> increase amount of logged messages\n"
|
|
);
|
|
|
|
return 1;
|
|
Index: src/daemon/cmdline.c
|
|
===================================================================
|
|
--- src/daemon/cmdline.c.orig 2010-09-08 17:00:51.788560939 +0200
|
|
+++ src/daemon/cmdline.c 2010-09-08 17:01:43.769151777 +0200
|
|
@@ -78,8 +78,9 @@ void cmdline(int argc, char **argv)
|
|
case 'u': option.autodetect = 1; break;
|
|
case 'T': opt_test++; break;
|
|
case 'v': printf(GPM_MESS_VERSION "\n"); exit(0);
|
|
- case '2': (which_mouse->opt_three) = -1; break;
|
|
- case '3': (which_mouse->opt_three) = 1; break;
|
|
+ case 'V': break; /* gpm_debug_level not supported anymore */
|
|
+ case '2': (which_mouse->opt_three) = -1; break;
|
|
+ case '3': (which_mouse->opt_three) = 1; break;
|
|
default: exit(usage("commandline"));
|
|
}
|
|
}
|
|
Index: src/headers/message.h
|
|
===================================================================
|
|
--- src/headers/message.h.orig 2010-09-08 17:00:51.984547286 +0200
|
|
+++ src/headers/message.h 2010-09-08 17:00:53.060472330 +0200
|
|
@@ -98,8 +98,7 @@
|
|
" -t mouse-type sets mouse type (default '%s')\n" \
|
|
" Use a non-existent type (e.g. \"help\") to get a list\n" \
|
|
" -T test: read mouse, no clients\n" \
|
|
- " -v print version and exit\n" \
|
|
- " -V verbosity increase number of logged messages\n\n\n" \
|
|
+ " -v print version and exit\n\n\n" \
|
|
" Examples:\n\n" \
|
|
" gpm -m /dev/misc/psaux -t ps2 to start with a ps2 mouse\n" \
|
|
" gpm -m /dev/tts/0 -t mman to use mouse man on COM1\n\n"
|