]> git.eshelyaron.com Git - emacs.git/commitdiff
; Small fix for 'grep-change-to-grep-edit-mode'
authorJuri Linkov <juri@linkov.net>
Wed, 18 Sep 2024 16:59:35 +0000 (19:59 +0300)
committerEshel Yaron <me@eshelyaron.com>
Mon, 23 Sep 2024 10:45:15 +0000 (12:45 +0200)
* lisp/progmodes/grep.el (grep-change-to-grep-edit-mode):
Use 'substitute-command-keys' like in 'occur-edit-mode'.

(cherry picked from commit 3924730200ccb79361ceac176e22731e862dbdd7)

lisp/progmodes/grep.el

index 7b93935c538040effd0be6a386a0496b4f14e4bb..9f6676311eab8dacb99f4ed35366e6db0d1aa993 100644 (file)
@@ -1122,7 +1122,8 @@ The only editable texts in a Grep-Edit buffer are the match results."
   (setq buffer-undo-list nil)
   (add-hook 'after-change-functions #'occur-after-change-function nil t)
   (run-mode-hooks 'grep-edit-mode-hook)
-  (message "Editing: \\[grep-edit-save-changes] to return to Grep mode"))
+  (message (substitute-command-keys
+            "Editing: Type \\[grep-edit-save-changes] to return to Grep mode")))
 
 (defun grep-edit-save-changes ()
   "Switch back to Grep mode."