diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/minibuf.c | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 78eb27f0814..08680c1f7f5 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2010-07-28 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * minibuf.c (syms_of_minibuf) <read-buffer-function>: | ||
| 4 | Doc fix (bug#5625). | ||
| 5 | |||
| 1 | 2010-07-27 Ken Brown <kbrown@cornell.edu> | 6 | 2010-07-27 Ken Brown <kbrown@cornell.edu> |
| 2 | 7 | ||
| 3 | * dired.c (DIRENTRY_NONEMPTY) [cygwin]: Use d_ino instead of | 8 | * dired.c (DIRENTRY_NONEMPTY) [cygwin]: Use d_ino instead of |
diff --git a/src/minibuf.c b/src/minibuf.c index 043eef13508..564346fd472 100644 --- a/src/minibuf.c +++ b/src/minibuf.c | |||
| @@ -2131,7 +2131,8 @@ syms_of_minibuf () | |||
| 2131 | staticpro (&Qread_expression_history); | 2131 | staticpro (&Qread_expression_history); |
| 2132 | 2132 | ||
| 2133 | DEFVAR_LISP ("read-buffer-function", &Vread_buffer_function, | 2133 | DEFVAR_LISP ("read-buffer-function", &Vread_buffer_function, |
| 2134 | doc: /* If this is non-nil, `read-buffer' does its work by calling this function. */); | 2134 | doc: /* If this is non-nil, `read-buffer' does its work by calling this function. |
| 2135 | The function is called with the arguments passed to `read-buffer'. */); | ||
| 2135 | Vread_buffer_function = Qnil; | 2136 | Vread_buffer_function = Qnil; |
| 2136 | 2137 | ||
| 2137 | DEFVAR_BOOL ("read-buffer-completion-ignore-case", | 2138 | DEFVAR_BOOL ("read-buffer-completion-ignore-case", |