aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2001-02-06 19:39:07 +0000
committerEli Zaretskii2001-02-06 19:39:07 +0000
commit9889af089dde042247cb9117aafb7a9810e80ed3 (patch)
treef116a1b9e640d7c84fd7b16d9e035509a8f25654
parent44806980873e4a2283d8b83c8f81f76348f1d821 (diff)
downloademacs-9889af089dde042247cb9117aafb7a9810e80ed3.tar.gz
emacs-9889af089dde042247cb9117aafb7a9810e80ed3.zip
(previous-matching-history-element, next-matching-history-element): Doc fix.
-rw-r--r--lisp/ChangeLog3
-rw-r--r--lisp/simple.el8
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 @@
12001-02-06 Eli Zaretskii <eliz@is.elta.co.il> 12001-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.)
732With prefix argument N, search for Nth previous match. 732With prefix argument N, search for Nth previous match.
733If N is negative, find the next or Nth next match. 733If N is negative, find the next or Nth next match.
734An uppercase letter in REGEXP makes the search case-sensitive. 734Normally, history elements are matched case-insensitively if
735`case-fold-search' is non-nil, but an uppercase letter in REGEXP
736makes the search case-sensitive.
735See also `minibuffer-history-case-insensitive-variables'." 737See 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.)
800With prefix argument N, search for Nth next match. 802With prefix argument N, search for Nth next match.
801If N is negative, find the previous or Nth previous match. 803If N is negative, find the previous or Nth previous match.
802An uppercase letter in REGEXP makes the search case-sensitive." 804Normally, history elements are matched case-insensitively if
805`case-fold-search' is non-nil, but an uppercase letter in REGEXP
806makes 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): "