diff options
| author | Eli Zaretskii | 2024-12-12 07:40:32 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2024-12-12 07:40:32 +0200 |
| commit | 276a74f0f70126d099b64fefbcafa09758c20b2e (patch) | |
| tree | 7903204ecc6669a99f915e43a518676ad7f5bba5 /lisp/eshell | |
| parent | 5f8a86992f30b7ccd502e36c766dea76a94d1798 (diff) | |
| download | emacs-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.el | 12 |
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. |
| 136 | If t, usual Isearch keys like \\[isearch-forward] in Eshell search in | 136 | If t, usual Isearch keys like \\[isearch-forward] in Eshell search only |
| 137 | the input history only. If `dwim', Isearch in the input history when | 137 | in the input history. If `dwim', Isearch commands search in the input |
| 138 | point is at the command line, otherwise search in the current Eshell | 138 | history when point is at the command line after the last prompt. The |
| 139 | buffer." | 139 | value 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 | ||