Mercurial > emacs
changeset 21429:3552d6fbbddc
(fix_submap_inheritance): Fix parens.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Wed, 08 Apr 1998 08:24:33 +0000 |
parents | 28157e58238a |
children | b6b154ad6e22 |
files | src/keymap.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/keymap.c Wed Apr 08 07:26:54 1998 +0000 +++ b/src/keymap.c Wed Apr 08 08:24:33 1998 +0000 @@ -368,10 +368,10 @@ /* 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,