]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix mistake in easymenu conversion
authorStefan Kangas <stefan@marxist.se>
Sat, 27 Feb 2021 19:22:43 +0000 (20:22 +0100)
committerStefan Kangas <stefan@marxist.se>
Sat, 27 Feb 2021 19:22:43 +0000 (20:22 +0100)
* lisp/progmodes/elisp-mode.el (emacs-lisp-mode-menu): Use :style and
:selected instead of :button.

lisp/progmodes/elisp-mode.el

index 048f6573727263a4842d55fb62032e0b4009c876..cfc8d8fcf8b7f973aee727ee2ce7f1dd6a9f931a 100644 (file)
@@ -149,8 +149,9 @@ All commands in `lisp-mode-shared-map' are inherited by this map.")
     ["Check Documentation Strings" checkdoc
      :help "Check documentation strings for style requirements"]
     ["Auto-Display Documentation Strings" eldoc-mode
-     :button (:toggle . (bound-and-true-p eldoc-mode))
-     :help "Display the documentation string for the item under cursor"]))
+     :help "Display the documentation string for the item under cursor"
+     :style toggle
+     :selected (bound-and-true-p eldoc-mode)]))
 
 (defun emacs-lisp-byte-compile ()
   "Byte compile the file containing the current buffer."