diff options
| author | Juanma Barranquero | 2010-07-28 02:15:49 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2010-07-28 02:15:49 +0200 |
| commit | b4f588fa4a41aaa4d90590f9c7ccf62beb1bfa06 (patch) | |
| tree | 8e602cd7b6ab8bae4d8f7216fdd8c1d3a3d02cbe /doc | |
| parent | 4f35b2e8396097f20f71297cc759df56c4b25890 (diff) | |
| download | emacs-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 'doc')
| -rw-r--r-- | doc/lispref/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/lispref/minibuf.texi | 9 |
2 files changed, 10 insertions, 4 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 7acfeccea04..596cf8e70f9 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2010-07-28 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * minibuf.texi (High-Level Completion): Document args of | ||
| 4 | `read-buffer-function' (bug#5625). | ||
| 5 | |||
| 1 | 2010-07-27 Juanma Barranquero <lekktu@gmail.com> | 6 | 2010-07-27 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 7 | ||
| 3 | * modes.texi (Defining Minor Modes): Use C-delete in examples, | 8 | * modes.texi (Defining Minor Modes): Use C-delete in examples, |
diff --git a/doc/lispref/minibuf.texi b/doc/lispref/minibuf.texi index 3588704b054..9bc6be432ae 100644 --- a/doc/lispref/minibuf.texi +++ b/doc/lispref/minibuf.texi | |||
| @@ -1222,10 +1222,11 @@ Buffer name (default foo): @point{} | |||
| 1222 | @end defun | 1222 | @end defun |
| 1223 | 1223 | ||
| 1224 | @defopt read-buffer-function | 1224 | @defopt read-buffer-function |
| 1225 | This variable specifies how to read buffer names. For example, if you | 1225 | This variable specifies how to read buffer names. The function is |
| 1226 | set this variable to @code{iswitchb-read-buffer}, all Emacs commands | 1226 | called with the arguments passed to @code{read-buffer}. For example, |
| 1227 | that call @code{read-buffer} to read a buffer name will actually use the | 1227 | if you set this variable to @code{iswitchb-read-buffer}, all Emacs |
| 1228 | @code{iswitchb} package to read it. | 1228 | commands that call @code{read-buffer} to read a buffer name will |
| 1229 | actually use the @code{iswitchb} package to read it. | ||
| 1229 | @end defopt | 1230 | @end defopt |
| 1230 | 1231 | ||
| 1231 | @defopt read-buffer-completion-ignore-case | 1232 | @defopt read-buffer-completion-ignore-case |