]> granicus.if.org Git - mutt/commitdiff
Add a safeguard #ifdef for the KEY_BTAB entry. Suggested by Thomas
authorThomas Roessler <roessler@does-not-exist.org>
Wed, 13 Nov 2002 09:48:29 +0000 (09:48 +0000)
committerThomas Roessler <roessler@does-not-exist.org>
Wed, 13 Nov 2002 09:48:29 +0000 (09:48 +0000)
Dickey.

keymap.c

index 1c886f7274d2c651930a7c01c224792a81b83bfd..61ac095c3c7e44dfe2a83b57078623667dc4b6e8 100644 (file)
--- a/keymap.c
+++ b/keymap.c
@@ -78,7 +78,9 @@ static struct mapping_t KeyNames[] = {
   { "<Esc>",   '\033' },
   { "<Tab>",   '\t' },
   { "<Space>", ' ' },
+#ifdef KEY_BTAB
   { "<BackTab>", KEY_BTAB },
+#endif
   { NULL,      0 }
 };