diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/minibuf.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 01bad2e5a4d..91b9594efa8 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2006-05-07 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * minibuf.c (syms_of_minibuf) <history-length>: Fix typo in doc. | ||
| 4 | |||
| 1 | 2006-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 5 | 2006-05-07 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> |
| 2 | 6 | ||
| 3 | * mac.c (Fmac_clear_font_name_table): Move defun to macfns.c. | 7 | * mac.c (Fmac_clear_font_name_table): Move defun to macfns.c. |
diff --git a/src/minibuf.c b/src/minibuf.c index e9947079892..d4938415a1c 100644 --- a/src/minibuf.c +++ b/src/minibuf.c | |||
| @@ -2799,7 +2799,7 @@ syms_of_minibuf () | |||
| 2799 | DEFVAR_LISP ("history-length", &Vhistory_length, | 2799 | DEFVAR_LISP ("history-length", &Vhistory_length, |
| 2800 | doc: /* *Maximum length for history lists before truncation takes place. | 2800 | doc: /* *Maximum length for history lists before truncation takes place. |
| 2801 | A number means that length; t means infinite. Truncation takes place | 2801 | A number means that length; t means infinite. Truncation takes place |
| 2802 | just after a new element is inserted. Setting the history-length | 2802 | just after a new element is inserted. Setting the `history-length' |
| 2803 | property of a history variable overrides this default. */); | 2803 | property of a history variable overrides this default. */); |
| 2804 | XSETFASTINT (Vhistory_length, 30); | 2804 | XSETFASTINT (Vhistory_length, 30); |
| 2805 | 2805 | ||