From: Stefan Monnier Date: Thu, 18 Oct 2001 22:14:45 +0000 (+0000) Subject: (current_minor_maps): `override' only shadows its X-Git-Tag: ttn-vms-21-2-B4~19364 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ef879104ac3c61732bab1b99a0f3cb4ca5c1ffb4;p=emacs.git (current_minor_maps): `override' only shadows its correspondent in minor-mode-map-alist, not the whole tail. --- diff --git a/src/ChangeLog b/src/ChangeLog index 10376fddaf5..cda3dc4186f 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2001-10-18 Stefan Monnier + + * keymap.c (current_minor_maps): `override' only shadows its + correspondent in minor-mode-map-alist, not the whole tail. + 2001-10-18 Andrew Innes * fontset.c (fs_load_font) [WINDOWSNT && _MSC_VER]: Disable diff --git a/src/keymap.c b/src/keymap.c index eb4d3ab375c..85a70a1a1e3 100644 --- a/src/keymap.c +++ b/src/keymap.c @@ -1184,7 +1184,7 @@ current_minor_maps (modeptr, mapptr) { val = assq_no_quit (var, lists[0]); if (!NILP (val)) - break; + continue; } if (i >= cmm_size)