]> git.eshelyaron.com Git - emacs.git/commitdiff
(current_minor_maps): `override' only shadows its
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 18 Oct 2001 22:14:45 +0000 (22:14 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 18 Oct 2001 22:14:45 +0000 (22:14 +0000)
correspondent in minor-mode-map-alist, not the whole tail.

src/ChangeLog
src/keymap.c

index 10376fddaf59fd1eadb0b6694cd2be77602a5890..cda3dc4186f7948685393653a7dc2227a8a7d266 100644 (file)
@@ -1,3 +1,8 @@
+2001-10-18  Stefan Monnier  <monnier@cs.yale.edu>
+
+       * keymap.c (current_minor_maps): `override' only shadows its
+       correspondent in minor-mode-map-alist, not the whole tail.
+
 2001-10-18  Andrew Innes  <andrewi@gnu.org>
 
        * fontset.c (fs_load_font) [WINDOWSNT && _MSC_VER]: Disable
index eb4d3ab375cb43856c90daad0ede957120270397..85a70a1a1e331c283fa0dc9fa934ce757db68c49 100644 (file)
@@ -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)