Mercurial > emacs
changeset 93154:3891784e87be
(menu-bar-showhide-fringe-ind-menu): Fix radio
button condition.
(menu-bar-showhide-fringe-ind-menu): Likewise.
author | Andreas Schwab <schwab@suse.de> |
---|---|
date | Sun, 23 Mar 2008 11:21:14 +0000 |
parents | 26c3c0c2caa4 |
children | 09cc3d0d41ce |
files | lisp/ChangeLog lisp/menu-bar.el |
diffstat | 2 files changed, 10 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Sun Mar 23 02:30:04 2008 +0000 +++ b/lisp/ChangeLog Sun Mar 23 11:21:14 2008 +0000 @@ -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-23 Jay Belanger <jay.p.belanger@gmail.com> * calc/calc.el (calc-was-keypad-mode, calc-full-mode)
--- a/lisp/menu-bar.el Sun Mar 23 02:30:04 2008 +0000 +++ b/lisp/menu-bar.el Sun Mar 23 11:21:14 2008 +0000 @@ -761,8 +761,8 @@ :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 @@ '(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."