=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/cmd-show-options.c,v retrieving revision 1.2 retrieving revision 1.3 diff -c -r1.2 -r1.3 *** src/usr.bin/tmux/cmd-show-options.c 2009/07/07 19:49:19 1.2 --- src/usr.bin/tmux/cmd-show-options.c 2009/07/13 23:11:35 1.3 *************** *** 1,4 **** ! /* $OpenBSD: cmd-show-options.c,v 1.2 2009/07/07 19:49:19 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: cmd-show-options.c,v 1.3 2009/07/13 23:11:35 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 32,38 **** const struct cmd_entry cmd_show_options_entry = { "show-options", "show", "[-g] " CMD_TARGET_SESSION_USAGE, ! CMD_GFLAG, cmd_target_init, cmd_target_parse, cmd_show_options_exec, --- 32,38 ---- const struct cmd_entry cmd_show_options_entry = { "show-options", "show", "[-g] " CMD_TARGET_SESSION_USAGE, ! 0, CMD_CHFLAG('g'), cmd_target_init, cmd_target_parse, cmd_show_options_exec, *************** *** 53,59 **** char *vs; long long vn; ! if (data->flags & CMD_GFLAG) oo = &global_s_options; else { if ((s = cmd_find_session(ctx, data->target)) == NULL) --- 53,59 ---- char *vs; long long vn; ! if (data->chflags & CMD_CHFLAG('g')) oo = &global_s_options; else { if ((s = cmd_find_session(ctx, data->target)) == NULL)