]> git.eshelyaron.com Git - emacs.git/commitdiff
; Isearch: Fix key bindings in docstrings
authorJake Forster <jakecameron.forster@gmail.com>
Mon, 28 Apr 2025 12:52:18 +0000 (22:22 +0930)
committerEshel Yaron <me@eshelyaron.com>
Thu, 1 May 2025 05:31:48 +0000 (07:31 +0200)
* lisp/isearch.el (isearch-allow-motion)
(isearch-motion-changes-direction): Use isearch-mode-map for
commands in docstrings (bug#78118).

Copyright-paperwork-exempt: yes
(cherry picked from commit 14c707b42d9db7dd2220118ecb49df8e2a5e7b78)

lisp/isearch.el

index c30d2cde0c5c4ce83d944c61892b7ada53a97989..aaa3df75a9e48c89dea0705d43fe71516399cb30 100644 (file)
@@ -3011,11 +3011,11 @@ See also the related option `isearch-allow-motion'."
 
 (defcustom isearch-allow-motion nil
   "Whether to allow movement between isearch matches by cursor motion commands.
-If non-nil, the four motion commands \\[beginning-of-buffer], \\[end-of-buffer], \
-\\[scroll-up-command] and \\[scroll-down-command], when invoked during
-Isearch, move respectively to the first occurrence of the current search string
-in the buffer, the last one, the first one after the current window, and the
-last one before the current window.
+If non-nil, the four motion commands \\<isearch-mode-map>\\[beginning-of-buffer], \\[end-of-buffer], \
+\\[scroll-up-command] and \\[scroll-down-command], when invoked
+during Isearch, move respectively to the first occurrence of the current
+search string in the buffer, the last one, the first one after the current
+window, and the last one before the current window.
 If nil, these motion commands normally exit Isearch and are executed.
 See also the related options `isearch-motion-changes-direction' and
 `isearch-allow-scroll'."
@@ -3028,8 +3028,8 @@ See also the related options `isearch-motion-changes-direction' and
   "Whether motion commands during incremental search change search direction.
 If nil, the search direction (forward or backward) does not change when
 motion commands are used during incremental search, except when wrapping.
-If non-nil, the search direction is forward after \\[beginning-of-buffer] and \
-\\[scroll-up-command], and
+If non-nil, the search direction is forward after \
+\\<isearch-mode-map>\\[beginning-of-buffer] and \\[scroll-up-command], and
 backward after \\[end-of-buffer] and \\[scroll-down-command]."
   :type '(choice (const :tag "Off" nil)
                  (const :tag "On" t))