* lisp/progmodes/elisp-mode.el (emacs-lisp-mode-menu): Simplify condition.

This commit is contained in:
Andrea Corallo 2023-08-10 10:34:01 +02:00
parent 173af0cad5
commit 4535aafa8a

View file

@ -86,8 +86,7 @@ All commands in `lisp-mode-shared-map' are inherited by this map."
:help "Recompile every `.el' file in DIRECTORY that needs recompilation"]
["Native-compile and Load" emacs-lisp-native-compile-and-load
:help "Compile the current file to native code, then load compiled native code"
:active (and (featurep 'native-compile)
(native-comp-available-p))]
:active (native-comp-available-p)]
["Disassemble Byte Compiled Object..." disassemble
:help "Print disassembled code for OBJECT in a buffer"]
"---"