]> git.eshelyaron.com Git - emacs.git/commitdiff
* Add `emacs-lisp-native-compile' to easy-menu.
authorAndrea Corallo <acorallo@gnu.org>
Thu, 10 Aug 2023 08:39:14 +0000 (10:39 +0200)
committerAndrea Corallo <acorallo@gnu.org>
Thu, 10 Aug 2023 08:39:14 +0000 (10:39 +0200)
* lisp/progmodes/elisp-mode.el (emacs-lisp-mode-menu): Add menu
item for emacs-lisp-native-compile.

lisp/progmodes/elisp-mode.el

index 4d92bed62361b52a651c2d8762cfba16d8019ef3..bd3916ce108486f04ac821fa6bb3d684d7ded4a9 100644 (file)
@@ -84,6 +84,9 @@ All commands in `lisp-mode-shared-map' are inherited by this map."
      :help "Byte-compile the current file (if it has changed), then load compiled code"]
     ["Byte-recompile Directory..." byte-recompile-directory
      :help "Recompile every `.el' file in DIRECTORY that needs recompilation"]
+    ["Native-compile This File" emacs-lisp-native-compile
+     :help "Compile the current file containing the current buffer to native code"
+     :active (native-comp-available-p)]
     ["Native-compile and Load" emacs-lisp-native-compile-and-load
      :help "Compile the current file to native code, then load compiled native code"
      :active (native-comp-available-p)]