aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2024-04-06 13:43:50 +0300
committerEli Zaretskii2024-04-06 13:43:50 +0300
commiteaec6cc3d7cc247377524225f2a51407a4cb20c7 (patch)
treef5da8d881e3b738ae2c365c3a30fc81dbbf80143
parent73569eb957e47e99d8181950afd7977a1ffa1acc (diff)
downloademacs-eaec6cc3d7cc247377524225f2a51407a4cb20c7.tar.gz
emacs-eaec6cc3d7cc247377524225f2a51407a4cb20c7.zip
; Minor fixes of doc strings referencing keymaps.
* lisp/edmacro.el (edmacro-mode): * lisp/info.el (Info-mouse-follow-nearest-node): Move the reference to mode keymap from the first line. (Bug#70163)
-rw-r--r--lisp/edmacro.el4
-rw-r--r--lisp/info.el4
2 files changed, 4 insertions, 4 deletions
diff --git a/lisp/edmacro.el b/lisp/edmacro.el
index abfc380d154..b7435edaa31 100644
--- a/lisp/edmacro.el
+++ b/lisp/edmacro.el
@@ -460,8 +460,8 @@ of a line, that final line is excluded."
460 (goto-char final-position))) 460 (goto-char final-position)))
461 461
462(defun edmacro-mode () 462(defun edmacro-mode ()
463 "\\<edmacro-mode-map>Keyboard Macro Editing mode. Press \ 463 "Keyboard Macro Editing mode.
464\\[edmacro-finish-edit] to save and exit. 464\\<edmacro-mode-map>Press \\[edmacro-finish-edit] to save and exit.
465To abort the edit, just kill this buffer with \\[kill-buffer] \\`RET'. 465To abort the edit, just kill this buffer with \\[kill-buffer] \\`RET'.
466 466
467Press \\[edmacro-insert-key] to insert the name of any key by typing the key. 467Press \\[edmacro-insert-key] to insert the name of any key by typing the key.
diff --git a/lisp/info.el b/lisp/info.el
index 1e478cdbee9..901f0384c62 100644
--- a/lisp/info.el
+++ b/lisp/info.el
@@ -4063,8 +4063,8 @@ ERRORSTRING optional fourth argument, controls action on no match:
4063 (error "No %s around position %d" errorstring pos)))))))) 4063 (error "No %s around position %d" errorstring pos))))))))
4064 4064
4065(defun Info-mouse-follow-nearest-node (click) 4065(defun Info-mouse-follow-nearest-node (click)
4066 "\\<Info-mode-map>Follow a node reference near point. 4066 "Follow a node reference near point.
4067Like \\[Info-menu], \\[Info-follow-reference], \\[Info-next], \\[Info-prev] or \\[Info-up] command, depending on where you click. 4067\\<Info-mode-map>Like \\[Info-menu], \\[Info-follow-reference], \\[Info-next], \\[Info-prev] or \\[Info-up] command, depending on where you click.
4068At end of the node's text, moves to the next node, or up if none." 4068At end of the node's text, moves to the next node, or up if none."
4069 (interactive "e" Info-mode) 4069 (interactive "e" Info-mode)
4070 (mouse-set-point click) 4070 (mouse-set-point click)