diff options
| author | Eli Zaretskii | 2019-03-09 20:20:47 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2019-03-09 20:20:47 +0200 |
| commit | 5dbf08bf45c525696c23c1d6ea6696b551e13515 (patch) | |
| tree | fb9005ac8c69b273e1844443b4a07f603c0f108b /src | |
| parent | 0589de55c465627c16314519568f22daa62ff654 (diff) | |
| download | emacs-5dbf08bf45c525696c23c1d6ea6696b551e13515.tar.gz emacs-5dbf08bf45c525696c23c1d6ea6696b551e13515.zip | |
* src/minibuf.c (Fread_buffer): Minor doc fixes. (Bug#34749)
Diffstat (limited to 'src')
| -rw-r--r-- | src/minibuf.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/minibuf.c b/src/minibuf.c index e3510105d0f..216c01a7add 100644 --- a/src/minibuf.c +++ b/src/minibuf.c | |||
| @@ -1110,9 +1110,10 @@ A user option, or customizable variable, is one for which | |||
| 1110 | } | 1110 | } |
| 1111 | 1111 | ||
| 1112 | DEFUN ("read-buffer", Fread_buffer, Sread_buffer, 1, 4, 0, | 1112 | DEFUN ("read-buffer", Fread_buffer, Sread_buffer, 1, 4, 0, |
| 1113 | doc: /* Read the name of a buffer and return as a string. | 1113 | doc: /* Read the name of a buffer and return it as a string. |
| 1114 | Prompt with PROMPT. | 1114 | Prompt with PROMPT. |
| 1115 | Optional second arg DEF is value to return if user enters an empty line. | 1115 | Optional second arg DEF is value to return if user enters an empty line, |
| 1116 | instead of that empty string. | ||
| 1116 | If DEF is a list of default values, return its first element. | 1117 | If DEF is a list of default values, return its first element. |
| 1117 | Optional third arg REQUIRE-MATCH determines whether non-existing | 1118 | Optional third arg REQUIRE-MATCH determines whether non-existing |
| 1118 | buffer names are allowed. It has the same meaning as the | 1119 | buffer names are allowed. It has the same meaning as the |