diff options
| author | Karl Heuer | 1998-04-08 08:24:33 +0000 |
|---|---|---|
| committer | Karl Heuer | 1998-04-08 08:24:33 +0000 |
| commit | c02a3079eec59880005bbd150053feb78097571a (patch) | |
| tree | 85235ae3b6a1b35a16604c1b748d569d5bf9152c /src/keymap.c | |
| parent | 783824f57e2cce55d82c0228b85570ad004a7baa (diff) | |
| download | emacs-c02a3079eec59880005bbd150053feb78097571a.tar.gz emacs-c02a3079eec59880005bbd150053feb78097571a.zip | |
(fix_submap_inheritance): Fix parens.
Diffstat (limited to 'src/keymap.c')
| -rw-r--r-- | src/keymap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/keymap.c b/src/keymap.c index 04d2bb28d5f..c0a0f21a126 100644 --- a/src/keymap.c +++ b/src/keymap.c | |||
| @@ -368,10 +368,10 @@ fix_submap_inheritance (map, event, submap) | |||
| 368 | /* SUBMAP is a cons that we found as a key binding. | 368 | /* SUBMAP is a cons that we found as a key binding. |
| 369 | Discard the other things found in a menu key binding. */ | 369 | Discard the other things found in a menu key binding. */ |
| 370 | 370 | ||
| 371 | if CONSP (submap) | 371 | if (CONSP (submap)) |
| 372 | { | 372 | { |
| 373 | /* May be an old format menu item */ | 373 | /* May be an old format menu item */ |
| 374 | if STRINGP (XCONS (submap)->car) | 374 | if (STRINGP (XCONS (submap)->car)) |
| 375 | { | 375 | { |
| 376 | submap = XCONS (submap)->cdr; | 376 | submap = XCONS (submap)->cdr; |
| 377 | /* Also remove a menu help string, if any, | 377 | /* Also remove a menu help string, if any, |