]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix some command substitutions
authorStefan Kangas <stefan@marxist.se>
Fri, 17 Jun 2022 14:29:44 +0000 (16:29 +0200)
committerStefan Kangas <stefan@marxist.se>
Fri, 17 Jun 2022 14:30:51 +0000 (16:30 +0200)
* lisp/net/rcirc.el (rcirc-edit-multiline):
* lisp/textmodes/reftex-index.el (reftex-index-phrases-mode)
(reftex-index-phrase-selection-or-word):
* lisp/textmodes/remember.el (remember): Fix command substitutions.

lisp/net/rcirc.el
lisp/textmodes/reftex-index.el
lisp/textmodes/remember.el

index 0d30b349229dccce00e0d3e95dace3e8e58c035e..00b57ab8e7390c767fe5d74990d2566e08c59d9d 100644 (file)
@@ -1708,7 +1708,10 @@ extracted."
       (setq rcirc-parent-buffer parent)
       (insert text)
       (and (> pos 0) (goto-char pos))
-      (message "Type C-c C-c to return text to %s, or C-c C-k to cancel" parent))))
+      (message "Type %s to return text to %s, or %s to cancel"
+               (substitute-command-keys "\\[rcirc-multiline-minor-submit]")
+               parent
+               (substitute-command-keys "\\[rcirc-multiline-minor-cancel]")))))
 
 (defvar rcirc-multiline-minor-mode-map
   (let ((map (make-sparse-keymap)))
index 734f82aba3f9dd07b75c4e74f4728d633b725cc6..9adf0c819bf0c8d971441d69b247c747452964b1 100644 (file)
@@ -1272,10 +1272,11 @@ This gets refreshed in every phrases command.")
 ;;;###autoload
 (defun reftex-index-phrase-selection-or-word (arg)
   "Add current selection or word at point to the phrases buffer.
+\\<reftex-index-phrases-mode-map>
 When you are in transient-mark-mode and the region is active, the
 selection will be used - otherwise the word at point.
 You get a chance to edit the entry in the phrases buffer - finish with
-`C-c C-c'."
+\\[reftex-index-phrases-save-and-return]."
   (interactive "P")
   (set-marker reftex-index-return-marker (point))
   (reftex-index-selection-or-word arg 'phrase)
@@ -1373,7 +1374,7 @@ If the buffer is non-empty, delete the old header first."
 ;;;###autoload
 (define-derived-mode reftex-index-phrases-mode fundamental-mode "Phrases"
   "Major mode for managing the Index phrases of a LaTeX document.
-This buffer was created with RefTeX.
+This buffer was created with RefTeX. \\<reftex-index-phrases-mode-map>
 
 To insert new phrases, use
  - `C-c \\' in the LaTeX document to copy selection or word
index e72f86f7db616e4ed9a9698f87801b142e89b2a4..f7ebe04bcf5d77434121def3756a87711ac12006 100644 (file)
@@ -296,7 +296,8 @@ With a prefix or a visible region, use the region as INITIAL."
         (insert "\n\n" annotation))
       (setq remember-initial-contents nil)
       (goto-char (point-min)))
-    (message "Use C-c C-c to remember the data.")))
+    (message (substitute-command-keys
+              "Use \\[remember-finalize] to remember the data"))))
 
 ;;;###autoload
 (defun remember-other-frame (&optional initial)