summaryrefslogtreecommitdiff
path: root/lisp/menu-bar.el
diff options
context:
space:
mode:
authorGerd Möllmann <gerd@gnu.org>2022-06-29 07:53:35 +0200
committerGerd Möllmann <gerd@gnu.org>2022-06-29 07:53:35 +0200
commit9c2b1d37e729f7af9e9661be7ece8348bae70ffa (patch)
treeb5bef7a18fe25181367c5ae0b01f84abfbdd0614 /lisp/menu-bar.el
parenta0d7caf865269ce8aa3cad85cabda4e5cbffd9c2 (diff)
downloademacs-9c2b1d37e729f7af9e9661be7ece8348bae70ffa.tar.gz
Ensure correct toggle menu item display
* lisp/menu-bar.el (menu-bar-make-toggle-command): Call force-mode-line-update. (Bug#56155)
Diffstat (limited to 'lisp/menu-bar.el')
-rw-r--r--lisp/menu-bar.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/menu-bar.el b/lisp/menu-bar.el
index 4a943d25284..92989fcfb2e 100644
--- a/lisp/menu-bar.el
+++ b/lisp/menu-bar.el
@@ -749,7 +749,11 @@ by \"Save Options\" in Custom buffers.")
;; interactively, because the purpose is to mark the variable as a
;; candidate for `Save Options', and we do not want to save options that
;; the user has already set explicitly in the init file.
- (when interactively (customize-mark-as-set ',variable)))
+ (when interactively
+ (customize-mark-as-set ',variable))
+ ;; Toggle menu items must make sure that the menu is updated so
+ ;; that toggle marks are drawn in the right state.
+ (force-mode-line-update t))
'(menu-item ,item-name ,command :help ,help
:button (:toggle . (and (default-boundp ',variable)
(default-value ',variable)))