Mercurial > emacs
comparison src/minibuf.c @ 100592:f4ce122a73cb
(Fread_buffer): Doc fix.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Sat, 20 Dec 2008 10:25:19 +0000 |
parents | 45b1a61112cb |
children | c7b149d90f17 |
comparison
equal
deleted
inserted
replaced
100591:b0cb5cbb868d | 100592:f4ce122a73cb |
---|---|
1175 DEFUN ("read-buffer", Fread_buffer, Sread_buffer, 1, 3, 0, | 1175 DEFUN ("read-buffer", Fread_buffer, Sread_buffer, 1, 3, 0, |
1176 doc: /* Read the name of a buffer and return as a string. | 1176 doc: /* Read the name of a buffer and return as a string. |
1177 Prompt with PROMPT. | 1177 Prompt with PROMPT. |
1178 Optional second arg DEF is value to return if user enters an empty line. | 1178 Optional second arg DEF is value to return if user enters an empty line. |
1179 If DEF is a list of default values, return its first element. | 1179 If DEF is a list of default values, return its first element. |
1180 If optional third arg REQUIRE-MATCH is non-nil, | 1180 Optional third arg REQUIRE-MATCH determines whether non-existing |
1181 only existing buffer names are allowed. | 1181 buffer names are allowed. It has the same meaning as the |
1182 REQUIRE-MATCH argument of `confirm-after-completion'. | |
1182 The argument PROMPT should be a string ending with a colon and a space. | 1183 The argument PROMPT should be a string ending with a colon and a space. |
1183 If `read-buffer-completion-ignore-case' is non-nil, completion ignores | 1184 If `read-buffer-completion-ignore-case' is non-nil, completion ignores |
1184 case while reading the buffer name. | 1185 case while reading the buffer name. |
1185 If `read-buffer-function' is non-nil, this works by calling it as a | 1186 If `read-buffer-function' is non-nil, this works by calling it as a |
1186 function, instead of the usual behavior. */) | 1187 function, instead of the usual behavior. */) |