diff options
| -rw-r--r-- | lisp/progmodes/elisp-mode.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/progmodes/elisp-mode.el b/lisp/progmodes/elisp-mode.el index 956e3d30bce..1b42051ab93 100644 --- a/lisp/progmodes/elisp-mode.el +++ b/lisp/progmodes/elisp-mode.el | |||
| @@ -84,6 +84,10 @@ All commands in `lisp-mode-shared-map' are inherited by this map." | |||
| 84 | :help "Byte-compile the current file (if it has changed), then load compiled code"] | 84 | :help "Byte-compile the current file (if it has changed), then load compiled code"] |
| 85 | ["Byte-recompile Directory..." byte-recompile-directory | 85 | ["Byte-recompile Directory..." byte-recompile-directory |
| 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 | ||
| 88 | :help "Compile the current file to native code, then load compiled native code" | ||
| 89 | :active (and (featurep 'native-compile) | ||
| 90 | (native-comp-available-p))] | ||
| 87 | ["Disassemble Byte Compiled Object..." disassemble | 91 | ["Disassemble Byte Compiled Object..." disassemble |
| 88 | :help "Print disassembled code for OBJECT in a buffer"] | 92 | :help "Print disassembled code for OBJECT in a buffer"] |
| 89 | "---" | 93 | "---" |