diff options
| author | Eli Zaretskii | 2007-12-22 17:15:48 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2007-12-22 17:15:48 +0000 |
| commit | 987ec16d97ad51fc31913f1709e9d1cb4f911510 (patch) | |
| tree | 3e85fe5921e0c4bbafb3384b9f91e4fa4a9655a9 | |
| parent | e5f0c02f8ef2a549ccc88a29792fcceab9625abf (diff) | |
| download | emacs-987ec16d97ad51fc31913f1709e9d1cb4f911510.tar.gz emacs-987ec16d97ad51fc31913f1709e9d1cb4f911510.zip | |
(set-variable-value-history): Add reference to history-length in
the doc string.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/simple.el | 5 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 60bbc2b7914..cafe756be54 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,7 +1,8 @@ | |||
| 1 | 2007-12-22 Eli Zaretskii <eliz@gnu.org> | 1 | 2007-12-22 Eli Zaretskii <eliz@gnu.org> |
| 2 | 2 | ||
| 3 | * simple.el (minibuffer-history, shell-command-history) | ||
| 4 | (set-variable-value-history): | ||
| 3 | * replace.el (regexp-history): | 5 | * replace.el (regexp-history): |
| 4 | * simple.el (minibuffer-history): | ||
| 5 | * international/mule-cmds.el (input-method-history): | 6 | * international/mule-cmds.el (input-method-history): |
| 6 | * files.el (file-name-history): Add reference to history-length in | 7 | * files.el (file-name-history): Add reference to history-length in |
| 7 | the doc string. | 8 | the doc string. |
diff --git a/lisp/simple.el b/lisp/simple.el index 8c97cec2a6c..d413e927a85 100644 --- a/lisp/simple.el +++ b/lisp/simple.el | |||
| @@ -4782,7 +4782,10 @@ Each action has the form (FUNCTION . ARGS)." | |||
| 4782 | 'switch-to-buffer-other-frame yank-action send-actions)) | 4782 | 'switch-to-buffer-other-frame yank-action send-actions)) |
| 4783 | 4783 | ||
| 4784 | (defvar set-variable-value-history nil | 4784 | (defvar set-variable-value-history nil |
| 4785 | "History of values entered with `set-variable'.") | 4785 | "History of values entered with `set-variable'. |
| 4786 | |||
| 4787 | Maximum length of the history list is determined by the value | ||
| 4788 | of `history-length', which see.") | ||
| 4786 | 4789 | ||
| 4787 | (defun set-variable (variable value &optional make-local) | 4790 | (defun set-variable (variable value &optional make-local) |
| 4788 | "Set VARIABLE to VALUE. VALUE is a Lisp object. | 4791 | "Set VARIABLE to VALUE. VALUE is a Lisp object. |