]> git.eshelyaron.com Git - emacs.git/commitdiff
Use defvar-keymap in lua-ts-mode
authorjohn muhl <jm@pub.pink>
Mon, 8 Jul 2024 20:54:02 +0000 (15:54 -0500)
committerEshel Yaron <me@eshelyaron.com>
Thu, 3 Oct 2024 06:40:53 +0000 (08:40 +0200)
* lisp/progmodes/lua-ts-mode.el (lua-ts-mode-map): Replace
'defvar' with 'defvar-keymap'.  (Bug#73585)

(cherry picked from commit bf3129d5821bb8804e486bc5d51de04846a31f12)

lisp/progmodes/lua-ts-mode.el

index 06daadbc1fd3f999caccdff354534fd6f8fcd93b..d167215326cf15825964394db23c7172608703a6 100644 (file)
@@ -720,14 +720,12 @@ Calls REPORT-FN directly."
               ((buffer-live-p (process-buffer process))))
     (with-current-buffer buffer (comint-write-input-ring))))
 
-(defvar lua-ts-mode-map
-  (let ((map (make-sparse-keymap "Lua")))
-    (keymap-set map "C-c C-n" 'lua-ts-inferior-lua)
-    (keymap-set map "C-c C-c" 'lua-ts-send-buffer)
-    (keymap-set map "C-c C-l" 'lua-ts-send-file)
-    (keymap-set map "C-c C-r" 'lua-ts-send-region)
-    map)
-  "Keymap for `lua-ts-mode' buffers.")
+(defvar-keymap lua-ts-mode-map
+  :doc "Keymap for `lua-ts-mode' buffers."
+  "C-c C-n" #'lua-ts-inferior-lua
+  "C-c C-c" #'lua-ts-send-buffer
+  "C-c C-l" #'lua-ts-send-file
+  "C-c C-r" #'lua-ts-send-region)
 
 (easy-menu-define lua-ts-mode-menu lua-ts-mode-map
   "Menu bar entry for `lua-ts-mode'."