diff options
| author | Eli Zaretskii | 2001-02-06 19:39:07 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2001-02-06 19:39:07 +0000 |
| commit | 9889af089dde042247cb9117aafb7a9810e80ed3 (patch) | |
| tree | f116a1b9e640d7c84fd7b16d9e035509a8f25654 | |
| parent | 44806980873e4a2283d8b83c8f81f76348f1d821 (diff) | |
| download | emacs-9889af089dde042247cb9117aafb7a9810e80ed3.tar.gz emacs-9889af089dde042247cb9117aafb7a9810e80ed3.zip | |
(previous-matching-history-element, next-matching-history-element): Doc fix.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/simple.el | 8 |
2 files changed, 9 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c578afef2fa..033a8c81840 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2001-02-06 Eli Zaretskii <eliz@is.elta.co.il> | 1 | 2001-02-06 Eli Zaretskii <eliz@is.elta.co.il> |
| 2 | 2 | ||
| 3 | * simple.el (previous-matching-history-element) | ||
| 4 | (next-matching-history-element): Doc fix. | ||
| 5 | |||
| 3 | * loadup.el: Load ccl before utf-8; don't load ccl in the ms-dos | 6 | * loadup.el: Load ccl before utf-8; don't load ccl in the ms-dos |
| 4 | specific part. | 7 | specific part. |
| 5 | 8 | ||
diff --git a/lisp/simple.el b/lisp/simple.el index f4d03ff2226..0af34931da1 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -731,7 +731,9 @@ If a history variable is a member of this list, then the | |||
| 731 | \(Previous history elements refer to earlier actions.) | 731 | \(Previous history elements refer to earlier actions.) |
| 732 | With prefix argument N, search for Nth previous match. | 732 | With prefix argument N, search for Nth previous match. |
| 733 | If N is negative, find the next or Nth next match. | 733 | If N is negative, find the next or Nth next match. |
| 734 | An uppercase letter in REGEXP makes the search case-sensitive. | 734 | Normally, history elements are matched case-insensitively if |
| 735 | `case-fold-search' is non-nil, but an uppercase letter in REGEXP | ||
| 736 | makes the search case-sensitive. | ||
| 735 | See also `minibuffer-history-case-insensitive-variables'." | 737 | See also `minibuffer-history-case-insensitive-variables'." |
| 736 | (interactive | 738 | (interactive |
| 737 | (let* ((enable-recursive-minibuffers t) | 739 | (let* ((enable-recursive-minibuffers t) |
| @@ -799,7 +801,9 @@ See also `minibuffer-history-case-insensitive-variables'." | |||
| 799 | \(The next history element refers to a more recent action.) | 801 | \(The next history element refers to a more recent action.) |
| 800 | With prefix argument N, search for Nth next match. | 802 | With prefix argument N, search for Nth next match. |
| 801 | If N is negative, find the previous or Nth previous match. | 803 | If N is negative, find the previous or Nth previous match. |
| 802 | An uppercase letter in REGEXP makes the search case-sensitive." | 804 | Normally, history elements are matched case-insensitively if |
| 805 | `case-fold-search' is non-nil, but an uppercase letter in REGEXP | ||
| 806 | makes the search case-sensitive." | ||
| 803 | (interactive | 807 | (interactive |
| 804 | (let* ((enable-recursive-minibuffers t) | 808 | (let* ((enable-recursive-minibuffers t) |
| 805 | (regexp (read-from-minibuffer "Next element matching (regexp): " | 809 | (regexp (read-from-minibuffer "Next element matching (regexp): " |