]> git.eshelyaron.com Git - emacs.git/commitdiff
(menu-bar-showhide-fringe-ind-menu): Fix radio
authorAndreas Schwab <schwab@suse.de>
Sun, 23 Mar 2008 11:22:53 +0000 (11:22 +0000)
committerAndreas Schwab <schwab@suse.de>
Sun, 23 Mar 2008 11:22:53 +0000 (11:22 +0000)
button condition.
(menu-bar-showhide-fringe-ind-menu): Likewise.

lisp/ChangeLog
lisp/menu-bar.el

index b1aecb57b2ee69cd8b333bb0ed89f4950169cee1..62cc587c370fbc7317ccffe4aab815ba19f01ba7 100644 (file)
@@ -1,3 +1,9 @@
+2008-03-23  Andreas Schwab  <schwab@suse.de>
+
+       * menu-bar.el (menu-bar-showhide-fringe-ind-menu): Fix radio
+       button condition.
+       (menu-bar-showhide-fringe-ind-menu): Likewise.
+
 2008-03-20  Dan Nicolaescu  <dann@ics.uci.edu>
 
        * vc-bzr.el (vc-bzr-print-log): Ensure it works when passed a
index 38479b676abf91b019e4d1efe08b81fe3bc319ff..30a4e42551ac06ce0c8b8ca4c927189c4858300f 100644 (file)
@@ -758,8 +758,8 @@ mail status in mode line"))
              :help
              "Show top/bottom indicators in opposite fringes, arrows in right"
              :visible (display-graphic-p)
-             :button (:radio . (eq indicate-buffer-boundaries
-                                   '((t . right) (top . left))))))
+             :button (:radio . (equal indicate-buffer-boundaries
+                                      '((t . right) (top . left))))))
 
 (defun menu-bar-showhide-fringe-ind-box ()
   "Display top and bottom indicators in opposite fringes."
@@ -771,8 +771,8 @@ mail status in mode line"))
   '(menu-item "Opposite, No Arrows" menu-bar-showhide-fringe-ind-box
              :help "Show top/bottom indicators in opposite fringes, no arrows"
              :visible (display-graphic-p)
-             :button (:radio . (eq indicate-buffer-boundaries
-                                   '((top . left) (bottom . right))))))
+             :button (:radio . (equal indicate-buffer-boundaries
+                                      '((top . left) (bottom . right))))))
 
 (defun menu-bar-showhide-fringe-ind-right ()
   "Display buffer boundaries and arrows in the right fringe."