diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2009-12-03 22:50:09 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2009-12-03 22:50:09 +0000 |
commit | 15a64b805e46584d37cc6745383709632e287999 (patch) | |
tree | 5a55f5006585c9cdde05163251fd99da243575b5 /key-string.c | |
parent | 6c9862662fd2cccdc55be9d447a27b10f33ed8ea (diff) | |
download | rtmux-15a64b805e46584d37cc6745383709632e287999.tar.gz rtmux-15a64b805e46584d37cc6745383709632e287999.tar.bz2 rtmux-15a64b805e46584d37cc6745383709632e287999.zip |
Massive spaces->tabs and trailing whitespace cleanup, hopefully for the last
time now I've configured emacs to make them displayed in really annoying
colours...
Diffstat (limited to 'key-string.c')
-rw-r--r-- | key-string.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/key-string.c b/key-string.c index 857d31d6..37b4928f 100644 --- a/key-string.c +++ b/key-string.c @@ -136,7 +136,7 @@ key_string_lookup_string(const char *string) key = (u_char) ptr[0]; } - /* + /* * Figure out if the single character in key is a valid ctrl * key. */ @@ -150,7 +150,7 @@ key_string_lookup_string(const char *string) return (key - 96); return (KEYC_NONE); } - + if ((string[0] == 'M' || string[0] == 'm') && string[1] == '-') { ptr = string + 2; if (ptr[0] == '\0') |