From a08404b7ba99bb150b1e268f9a514efff9538daf Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Sun, 23 Mar 2008 11:21:14 +0000 Subject: [PATCH] (menu-bar-showhide-fringe-ind-menu): Fix radio button condition. (menu-bar-showhide-fringe-ind-menu): Likewise. --- lisp/ChangeLog | 6 ++++++ lisp/menu-bar.el | 8 ++++---- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 742c5cf1ac2..61b5eac17fe 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2008-03-23 Andreas Schwab + + * menu-bar.el (menu-bar-showhide-fringe-ind-menu): Fix radio + button condition. + (menu-bar-showhide-fringe-ind-menu): Likewise. + 2008-03-23 Jay Belanger * calc/calc.el (calc-was-keypad-mode, calc-full-mode) diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el index bd7cd8257ef..7b3a409b97d 100644 --- a/lisp/menu-bar.el +++ b/lisp/menu-bar.el @@ -761,8 +761,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." @@ -774,8 +774,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." -- 2.39.2