emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/emacs-lisp/easymenu.el [lexbind]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/lisp/emacs-lisp/easymenu.el [lexbind]
Date: Tue, 14 Oct 2003 19:32:24 -0400

Index: emacs/lisp/emacs-lisp/easymenu.el
diff -c emacs/lisp/emacs-lisp/easymenu.el:1.50.2.1 
emacs/lisp/emacs-lisp/easymenu.el:1.50.2.2
*** emacs/lisp/emacs-lisp/easymenu.el:1.50.2.1  Fri Apr  4 01:20:16 2003
--- emacs/lisp/emacs-lisp/easymenu.el   Tue Oct 14 19:32:21 2003
***************
*** 600,611 ****
            ;; Prefer a map that already contains the to-be-modified entry.
            (when to-modify
              (dolist (map maps)
!               (when (and map (not (integerp map))
                           (easy-menu-get-map-look-for-name to-modify map))
                  (throw 'found map))))
            ;; Use the first valid map.
            (dolist (map maps)
!             (when (and map (not (integerp map)))
                (throw 'found map)))
            ;; Otherwise, make one up.
            ;; Hardcoding current-local-map is lame, but it's difficult
--- 600,611 ----
            ;; Prefer a map that already contains the to-be-modified entry.
            (when to-modify
              (dolist (map maps)
!               (when (and (keymapp map)
                           (easy-menu-get-map-look-for-name to-modify map))
                  (throw 'found map))))
            ;; Use the first valid map.
            (dolist (map maps)
!             (when (keymapp map)
                (throw 'found map)))
            ;; Otherwise, make one up.
            ;; Hardcoding current-local-map is lame, but it's difficult
***************
*** 620,623 ****
--- 620,624 ----
  
  (provide 'easymenu)
  
+ ;;; arch-tag: 2a04020d-90d2-476d-a7c6-71e072007a4a
  ;;; easymenu.el ends here




reply via email to

[Prev in Thread] Current Thread [Next in Thread]