diff options
| author | Andrea Corallo | 2023-08-10 10:34:01 +0200 |
|---|---|---|
| committer | Andrea Corallo | 2023-08-10 10:34:01 +0200 |
| commit | 4535aafa8a34b659e4ab18f0188fc8d9332f4e97 (patch) | |
| tree | 55965b30f29679a9b05b250a87f994afa9e8449d | |
| parent | 173af0cad514b7fa7b71580caa5e59241098607f (diff) | |
| download | emacs-4535aafa8a34b659e4ab18f0188fc8d9332f4e97.tar.gz emacs-4535aafa8a34b659e4ab18f0188fc8d9332f4e97.zip | |
* lisp/progmodes/elisp-mode.el (emacs-lisp-mode-menu): Simplify condition.
| -rw-r--r-- | lisp/progmodes/elisp-mode.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/progmodes/elisp-mode.el b/lisp/progmodes/elisp-mode.el index 5343be48bb3..4d92bed6236 100644 --- a/lisp/progmodes/elisp-mode.el +++ b/lisp/progmodes/elisp-mode.el | |||
| @@ -86,8 +86,7 @@ All commands in `lisp-mode-shared-map' are inherited by this map." | |||
| 86 | :help "Recompile every `.el' file in DIRECTORY that needs recompilation"] | 86 | :help "Recompile every `.el' file in DIRECTORY that needs recompilation"] |
| 87 | ["Native-compile and Load" emacs-lisp-native-compile-and-load | 87 | ["Native-compile and Load" emacs-lisp-native-compile-and-load |
| 88 | :help "Compile the current file to native code, then load compiled native code" | 88 | :help "Compile the current file to native code, then load compiled native code" |
| 89 | :active (and (featurep 'native-compile) | 89 | :active (native-comp-available-p)] |
| 90 | (native-comp-available-p))] | ||
| 91 | ["Disassemble Byte Compiled Object..." disassemble | 90 | ["Disassemble Byte Compiled Object..." disassemble |
| 92 | :help "Print disassembled code for OBJECT in a buffer"] | 91 | :help "Print disassembled code for OBJECT in a buffer"] |
| 93 | "---" | 92 | "---" |