aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuanma Barranquero2010-07-28 02:15:49 +0200
committerJuanma Barranquero2010-07-28 02:15:49 +0200
commitb4f588fa4a41aaa4d90590f9c7ccf62beb1bfa06 (patch)
tree8e602cd7b6ab8bae4d8f7216fdd8c1d3a3d02cbe /src
parent4f35b2e8396097f20f71297cc759df56c4b25890 (diff)
downloademacs-b4f588fa4a41aaa4d90590f9c7ccf62beb1bfa06.tar.gz
emacs-b4f588fa4a41aaa4d90590f9c7ccf62beb1bfa06.zip
Document arguments passed to `read-buffer-function' (bug#5625).
* doc/lispref/minibuf.texi (High-Level Completion): Document args of `read-buffer-function'. * src/minibuf.c (syms_of_minibuf) <read-buffer-function>: Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/minibuf.c3
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 @@
12010-07-28 Juanma Barranquero <lekktu@gmail.com>
2
3 * minibuf.c (syms_of_minibuf) <read-buffer-function>:
4 Doc fix (bug#5625).
5
12010-07-27 Ken Brown <kbrown@cornell.edu> 62010-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.
2135The 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",