diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2011-04-06 22:17:33 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2011-04-06 22:17:33 +0000 |
commit | 2b508f7f6b20575ecbdae377c10fac0b04497d94 (patch) | |
tree | a2a77d300ff6d181a23527ed1c3b8d5137f009df /tmux.h | |
parent | 536fc24653d51daf8f0015e68dd4191a9a989205 (diff) | |
download | rtmux-2b508f7f6b20575ecbdae377c10fac0b04497d94.tar.gz rtmux-2b508f7f6b20575ecbdae377c10fac0b04497d94.tar.bz2 rtmux-2b508f7f6b20575ecbdae377c10fac0b04497d94.zip |
|PatchSet 871
|Date: 2011/03/27 21:31:25
|Author: nicm
|Branch: HEAD
|Tag: (none)
|Log:
|Don't include meta twice when working out the flags to output for
|xterm-style keys - bit 3 is accepted on input but not on output. Also a
|style nit in the header.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.613 2011-04-06 22:16:33 nicm Exp $ */ +/* $Id: tmux.h,v 1.614 2011-04-06 22:17:33 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -106,7 +106,7 @@ extern char **environ; #define KEYC_SHIFT 0x8000 #define KEYC_PREFIX 0x10000 -/* Mask to obtain key w/o modifiers */ +/* Mask to obtain key w/o modifiers. */ #define KEYC_MASK_MOD (KEYC_ESCAPE|KEYC_CTRL|KEYC_SHIFT|KEYC_PREFIX) #define KEYC_MASK_KEY (~KEYC_MASK_MOD) |