summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2007-12-22 17:10:17 +0000
committerEli Zaretskii <eliz@gnu.org>2007-12-22 17:10:17 +0000
commitfae97ed8b8861e68394170f5a5a6938e14118cf0 (patch)
treee7ae99443600c63d32aef0d0de521edb3720da68
parent6f5d24524adc3a4388818d5e8a859b5c00ba7d2f (diff)
downloademacs-fae97ed8b8861e68394170f5a5a6938e14118cf0.tar.gz
(regexp-history): Add reference to `history-length' in the doc string.
-rw-r--r--lisp/ChangeLog8
-rw-r--r--lisp/replace.el5
2 files changed, 12 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index fb6fbe1da23..60bbc2b7914 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,11 @@
+2007-12-22 Eli Zaretskii <eliz@gnu.org>
+
+ * replace.el (regexp-history):
+ * simple.el (minibuffer-history):
+ * international/mule-cmds.el (input-method-history):
+ * files.el (file-name-history): Add reference to history-length in
+ the doc string.
+
2007-12-22 Richard Stallman <rms@gnu.org>
* comint.el (comint-password-prompt-regexp): Match `Enter Password'.
diff --git a/lisp/replace.el b/lisp/replace.el
index ebee65b2f40..9134f6881cc 100644
--- a/lisp/replace.el
+++ b/lisp/replace.el
@@ -513,7 +513,10 @@ which will run faster and will not set the mark or print anything."
(defvar regexp-history nil
- "History list for some commands that read regular expressions.")
+ "History list for some commands that read regular expressions.
+
+Maximum length of the history list is determined by the value
+of `history-length', which see.")
(defalias 'delete-non-matching-lines 'keep-lines)