Added missing "--buttondistinction" command-line option.

Documented "no button distinction" feature in --usage and man page.
This commit is contained in:
William Kendrick 2005-11-23 21:48:16 +00:00
parent 41bf5d6ce4
commit ed85a6c8f1
2 changed files with 20 additions and 4 deletions

View file

@ -22,7 +22,7 @@
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
(See COPYING.txt)
June 14, 2002 - November 20, 2005
June 14, 2002 - November 23, 2005
*/
@ -6436,6 +6436,7 @@ static void show_usage(FILE * f, char * prg)
" %s [--mixedcase | --uppercase] [--fancycursors | --nofancycursors]\n"
" %s [--mouse | --keyboard] [--dontgrab | --grab]\n"
" %s [--noshortcuts | --shortcuts] [--wheelmouse | --nowheelmouse]\n"
" %s [--nobuttondistinction | --buttondistinction ]\n"
" %s [--outlines | --nooutlines] [--stamps | --nostamps]\n"
" %s [--sysfonts | --nosysfonts]\n"
" %s [--nostampcontrols | --stampcontrols]\n"
@ -6462,7 +6463,7 @@ static void show_usage(FILE * f, char * prg)
blank,
#endif
blank, blank, blank,
blank);
blank, blank);
free(blank);
}
@ -7986,6 +7987,10 @@ static void setup(int argc, char * argv[])
{
no_button_distinction = 1;
}
else if (strcmp(argv[i], "--buttondistinction") == 0)
{
no_button_distinction = 0;
}
else if (strcmp(argv[i], "--sysfonts") == 0)
{
no_system_fonts = 0;