diff options
author | Eli Zaretskii <eliz@gnu.org> | 2007-12-22 17:20:55 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2007-12-22 17:20:55 +0000 |
commit | b014713ca63fcc6604b80159aaad46f6219ca62c (patch) | |
tree | 77659e7a9f359707fb084eef5af22e1091dc418e /src | |
parent | 987ec16d97ad51fc31913f1709e9d1cb4f911510 (diff) | |
download | emacs-b014713ca63fcc6604b80159aaad46f6219ca62c.tar.gz |
(syms_of_callint) <command-history>: Add reference to history-length in
the doc string.
Diffstat (limited to 'src')
-rw-r--r-- | src/ChangeLog | 5 | ||||
-rw-r--r-- | src/callint.c | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index a5b34e38966..284bca33828 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2007-12-22 Eli Zaretskii <eliz@gnu.org> + + * callint.c (syms_of_callint) <command-history>: Add reference to + history-length in the doc string. + 2007-12-17 Jason Rumney <jasonr@gnu.org> * w32fns.c (w32_wnd_proc) <WM_KEYDOWN>: Cast char to unsigned diff --git a/src/callint.c b/src/callint.c index 9dcc077fd65..65ef8aacadb 100644 --- a/src/callint.c +++ b/src/callint.c @@ -960,7 +960,10 @@ This is what `(interactive \"P\")' returns. */); DEFVAR_LISP ("command-history", &Vcommand_history, doc: /* List of recent commands that read arguments from terminal. -Each command is represented as a form to evaluate. */); +Each command is represented as a form to evaluate. + +Maximum length of the history list is determined by the value +of `history-length', which see. */); Vcommand_history = Qnil; DEFVAR_LISP ("command-debug-status", &Vcommand_debug_status, |