aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/callint.c5
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 @@
12007-12-22 Eli Zaretskii <eliz@gnu.org>
2
3 * callint.c (syms_of_callint) <command-history>: Add reference to
4 history-length in the doc string.
5
12007-12-17 Jason Rumney <jasonr@gnu.org> 62007-12-17 Jason Rumney <jasonr@gnu.org>
2 7
3 * w32fns.c (w32_wnd_proc) <WM_KEYDOWN>: Cast char to unsigned 8 * 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. */);
960 960
961 DEFVAR_LISP ("command-history", &Vcommand_history, 961 DEFVAR_LISP ("command-history", &Vcommand_history,
962 doc: /* List of recent commands that read arguments from terminal. 962 doc: /* List of recent commands that read arguments from terminal.
963Each command is represented as a form to evaluate. */); 963Each command is represented as a form to evaluate.
964
965Maximum length of the history list is determined by the value
966of `history-length', which see. */);
964 Vcommand_history = Qnil; 967 Vcommand_history = Qnil;
965 968
966 DEFVAR_LISP ("command-debug-status", &Vcommand_debug_status, 969 DEFVAR_LISP ("command-debug-status", &Vcommand_debug_status,