1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

; Fix previous easy-menu-define conversion

* lisp/emacs-lisp/re-builder.el (reb-mode-menu):
* lisp/progmodes/make-mode.el (makefile-mode-menu): Replace :button
attribute with :style and :selected.
This commit is contained in:
Stefan Kangas 2021-02-21 10:10:03 +01:00
parent df932bef91
commit 669b911c66
2 changed files with 15 additions and 9 deletions

View file

@ -250,9 +250,9 @@ Except for Lisp syntax this is the same as `reb-regexp'.")
["Change target buffer..." reb-change-target-buffer
:help "Change the target buffer and display it in the target window"]
["Case sensitive" reb-toggle-case
:button (:toggle . (with-current-buffer
reb-target-buffer
(null case-fold-search)))
:style toggle
:selected (with-current-buffer reb-target-buffer
(null case-fold-search))
:help "Toggle case sensitivity of searches for RE Builder target buffer"]
"---"
["Quit" reb-quit