aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/eshell
diff options
context:
space:
mode:
authorEli Zaretskii2024-12-12 07:40:32 +0200
committerEli Zaretskii2024-12-12 07:40:32 +0200
commit276a74f0f70126d099b64fefbcafa09758c20b2e (patch)
tree7903204ecc6669a99f915e43a518676ad7f5bba5 /lisp/eshell
parent5f8a86992f30b7ccd502e36c766dea76a94d1798 (diff)
downloademacs-276a74f0f70126d099b64fefbcafa09758c20b2e.tar.gz
emacs-276a74f0f70126d099b64fefbcafa09758c20b2e.zip
; Fix documentation of a recent change in Eshell
* lisp/eshell/em-hist.el (eshell-history-isearch): Fix typo and wording. (Bug#74287)
Diffstat (limited to 'lisp/eshell')
-rw-r--r--lisp/eshell/em-hist.el12
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/eshell/em-hist.el b/lisp/eshell/em-hist.el
index 4bcf434f6e4..2d48884bdb6 100644
--- a/lisp/eshell/em-hist.el
+++ b/lisp/eshell/em-hist.el
@@ -132,13 +132,13 @@ whitespace."
132 :risky t) 132 :risky t)
133 133
134(defcustom eshell-history-isearch nil 134(defcustom eshell-history-isearch nil
135 "Non-nil to Isearch in input history only. 135 "If non-nil, Isearch searches in Eshell input history.
136If t, usual Isearch keys like \\[isearch-forward] in Eshell search in 136If t, usual Isearch keys like \\[isearch-forward] in Eshell search only
137the input history only. If `dwim', Isearch in the input history when 137in the input history. If `dwim', Isearch commands search in the input
138point is at the command line, otherwise search in the current Eshell 138history when point is at the command line after the last prompt. The
139buffer." 139value nil (the default) means to search in the current Eshell buffer."
140 :type '(choice (const :tag "Don't search in input history" nil) 140 :type '(choice (const :tag "Don't search in input history" nil)
141 (const :tag "Search histroy when point is on command line" dwim) 141 (const :tag "Search history when point is on command line" dwim)
142 (const :tag "Always search in input history" t)) 142 (const :tag "Always search in input history" t))
143 :version "31.1") 143 :version "31.1")
144 144