comparison src/minibuf.c @ 73083:fcfd01b24e1e

(Finternal_complete_buffer, Fread_minibuffer, Fdisplay_completion_list): Fix typos in docstrings.
author Juanma Barranquero <lekktu@gmail.com>
date Sat, 23 Sep 2006 21:05:12 +0000
parents 760e84d650e1
children 3dc812144482 bb0e318b7c53
comparison
equal deleted inserted replaced
73082:40a575bcdf72 73083:fcfd01b24e1e
1019 DEFUN ("read-minibuffer", Fread_minibuffer, Sread_minibuffer, 1, 2, 0, 1019 DEFUN ("read-minibuffer", Fread_minibuffer, Sread_minibuffer, 1, 2, 0,
1020 doc: /* Return a Lisp object read using the minibuffer, unevaluated. 1020 doc: /* Return a Lisp object read using the minibuffer, unevaluated.
1021 Prompt with PROMPT. If non-nil, optional second arg INITIAL-CONTENTS 1021 Prompt with PROMPT. If non-nil, optional second arg INITIAL-CONTENTS
1022 is a string to insert in the minibuffer before reading. 1022 is a string to insert in the minibuffer before reading.
1023 \(INITIAL-CONTENTS can also be a cons of a string and an integer. Such 1023 \(INITIAL-CONTENTS can also be a cons of a string and an integer. Such
1024 arguments are used as in `read-from-minibuffer') */) 1024 arguments are used as in `read-from-minibuffer'.) */)
1025 (prompt, initial_contents) 1025 (prompt, initial_contents)
1026 Lisp_Object prompt, initial_contents; 1026 Lisp_Object prompt, initial_contents;
1027 { 1027 {
1028 CHECK_STRING (prompt); 1028 CHECK_STRING (prompt);
1029 return read_minibuf (Vminibuffer_local_map, initial_contents, 1029 return read_minibuf (Vminibuffer_local_map, initial_contents,
1908 DEFUN ("internal-complete-buffer", Finternal_complete_buffer, Sinternal_complete_buffer, 3, 3, 0, 1908 DEFUN ("internal-complete-buffer", Finternal_complete_buffer, Sinternal_complete_buffer, 3, 3, 0,
1909 doc: /* Perform completion on buffer names. 1909 doc: /* Perform completion on buffer names.
1910 If the argument FLAG is nil, invoke `try-completion', if it's t, invoke 1910 If the argument FLAG is nil, invoke `try-completion', if it's t, invoke
1911 `all-completions', otherwise invoke `test-completion'. 1911 `all-completions', otherwise invoke `test-completion'.
1912 1912
1913 The arguments STRING and PREDICATE are as in `try-completion', 1913 The arguments STRING and PREDICATE are as in `try-completion',
1914 `all-completions', and `test-completion'. */) 1914 `all-completions', and `test-completion'. */)
1915 (string, predicate, flag) 1915 (string, predicate, flag)
1916 Lisp_Object string, predicate, flag; 1916 Lisp_Object string, predicate, flag;
1917 { 1917 {
1918 if (NILP (flag)) 1918 if (NILP (flag))
2409 It can find the completion buffer in `standard-output'. 2409 It can find the completion buffer in `standard-output'.
2410 The optional second arg COMMON-SUBSTRING is a string. 2410 The optional second arg COMMON-SUBSTRING is a string.
2411 It is used to put faces, `completions-first-difference' and 2411 It is used to put faces, `completions-first-difference' and
2412 `completions-common-part' on the completion buffer. The 2412 `completions-common-part' on the completion buffer. The
2413 `completions-common-part' face is put on the common substring 2413 `completions-common-part' face is put on the common substring
2414 specified by COMMON-SUBSTRING. If COMMON-SUBSTRING is nil 2414 specified by COMMON-SUBSTRING. If COMMON-SUBSTRING is nil
2415 and the current buffer is not the minibuffer, the faces are not put. 2415 and the current buffer is not the minibuffer, the faces are not put.
2416 Internally, COMMON-SUBSTRING is bound to `completion-common-substring' 2416 Internally, COMMON-SUBSTRING is bound to `completion-common-substring'
2417 during running `completion-setup-hook'. */) 2417 during running `completion-setup-hook'. */)
2418 (completions, common_substring) 2418 (completions, common_substring)
2419 Lisp_Object completions; 2419 Lisp_Object completions;