From c02a3079eec59880005bbd150053feb78097571a Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Wed, 8 Apr 1998 08:24:33 +0000 Subject: [PATCH] (fix_submap_inheritance): Fix parens. --- src/keymap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/keymap.c b/src/keymap.c index 04d2bb28d5..c0a0f21a12 100644 --- a/src/keymap.c +++ b/src/keymap.c @@ -368,10 +368,10 @@ fix_submap_inheritance (map, event, submap) /* SUBMAP is a cons that we found as a key binding. Discard the other things found in a menu key binding. */ - if CONSP (submap) + if (CONSP (submap)) { /* May be an old format menu item */ - if STRINGP (XCONS (submap)->car) + if (STRINGP (XCONS (submap)->car)) { submap = XCONS (submap)->cdr; /* Also remove a menu help string, if any, -- 2.20.1