]> git.eshelyaron.com Git - emacs.git/commitdiff
Do interactive mode tagging in edmacro.el
authorStefan Kangas <stefan@marxist.se>
Wed, 22 Jun 2022 10:14:06 +0000 (12:14 +0200)
committerStefan Kangas <stefan@marxist.se>
Wed, 22 Jun 2022 10:14:06 +0000 (12:14 +0200)
* lisp/edmacro.el (edmacro-finish-edit, edmacro-insert-key):
Add interactive mode tag for edmacro-mode.

lisp/edmacro.el

index 2f5a8c137e4e0ff98272ca7e4a7f9d437c8026df..bdc50c5885aa6f0627d0bb00852428eaecdee458 100644 (file)
@@ -255,7 +255,7 @@ or nil, use a compact 80-column format."
 ;;; Commands for *Edit Macro* buffer.
 
 (defun edmacro-finish-edit ()
-  (interactive)
+  (interactive nil edmacro-mode)
   (unless (eq major-mode 'edmacro-mode)
     (error
      "This command is valid only in buffers created by `edit-kbd-macro'"))
@@ -366,7 +366,7 @@ or nil, use a compact 80-column format."
 
 (defun edmacro-insert-key (key)
   "Insert the written name of a KEY in the buffer."
-  (interactive "kKey to insert: ")
+  (interactive "kKey to insert: " edmacro-mode)
   (if (bolp)
       (insert (edmacro-format-keys key t) "\n")
     (insert (edmacro-format-keys key) " ")))