From: Thomas Roessler Date: Wed, 13 Nov 2002 09:48:29 +0000 (+0000) Subject: Add a safeguard #ifdef for the KEY_BTAB entry. Suggested by Thomas X-Git-Tag: mutt-1-5-2-rel~8 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=29722b21acb768c858794a686d76427266641cfa;p=mutt Add a safeguard #ifdef for the KEY_BTAB entry. Suggested by Thomas Dickey. --- diff --git a/keymap.c b/keymap.c index 1c886f72..61ac095c 100644 --- a/keymap.c +++ b/keymap.c @@ -78,7 +78,9 @@ static struct mapping_t KeyNames[] = { { "", '\033' }, { "", '\t' }, { "", ' ' }, +#ifdef KEY_BTAB { "", KEY_BTAB }, +#endif { NULL, 0 } };