diff options
| author | Richard M. Stallman | 1997-09-02 05:22:07 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-09-02 05:22:07 +0000 |
| commit | c8c1552149b7d2c3047f0a9a166c389fd73fa3e3 (patch) | |
| tree | 29f606623ec96a06400ecce39271f64bcf987b97 /src | |
| parent | 63f205ae7269ee64eda20053d103b1dff88ba002 (diff) | |
| download | emacs-c8c1552149b7d2c3047f0a9a166c389fd73fa3e3.tar.gz emacs-c8c1552149b7d2c3047f0a9a166c389fd73fa3e3.zip | |
(Fread_from_minibuffer, Fread_string): Doc fixes.
(Fread_no_blanks_input, Fcompleting_read): Doc fixes.
Diffstat (limited to 'src')
| -rw-r--r-- | src/minibuf.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/minibuf.c b/src/minibuf.c index 03cddcca32a..f96589533d2 100644 --- a/src/minibuf.c +++ b/src/minibuf.c | |||
| @@ -608,8 +608,8 @@ Fifth arg HIST, if non-nil, specifies a history list\n\ | |||
| 608 | Sixth arg DEFAULT-VALUE is the default value. If non-nil, it is used\n\ | 608 | Sixth arg DEFAULT-VALUE is the default value. If non-nil, it is used\n\ |
| 609 | for history commands, and as the value to return if the user enters\n\ | 609 | for history commands, and as the value to return if the user enters\n\ |
| 610 | the empty string.\n\ | 610 | the empty string.\n\ |
| 611 | Seventh arg INHERIT-INPUT-METHOD non-nil means the minibuffer inherits\n\ | 611 | Seventh arg INHERIT-INPUT-METHOD, if non-nil, means the minibuffer inherits\n\ |
| 612 | the current input method.\n\ | 612 | the current input method and the setting of enable-multibyte-characters.\n\ |
| 613 | If the variable `minibuffer-allow-text-properties is non-nil,\n\ | 613 | If the variable `minibuffer-allow-text-properties is non-nil,\n\ |
| 614 | then the string which is returned includes whatever text properties\n\ | 614 | then the string which is returned includes whatever text properties\n\ |
| 615 | were present in the minibuffer. Otherwise the value has no text properties.") | 615 | were present in the minibuffer. Otherwise the value has no text properties.") |
| @@ -714,8 +714,8 @@ If non-nil, second arg INITIAL-INPUT is a string to insert before reading.\n\ | |||
| 714 | The third arg HISTORY, if non-nil, specifies a history list\n\ | 714 | The third arg HISTORY, if non-nil, specifies a history list\n\ |
| 715 | and optionally the initial position in the list.\n\ | 715 | and optionally the initial position in the list.\n\ |
| 716 | See `read-from-minibuffer' for details of HISTORY argument.\n\ | 716 | See `read-from-minibuffer' for details of HISTORY argument.\n\ |
| 717 | The forth arg INHERIT-INPUT-METHOD non-nil means the minibuffer inherits\n\ | 717 | Fourth arg INHERIT-INPUT-METHOD, if non-nil, means the minibuffer inherits\n\ |
| 718 | the current input method.") | 718 | the current input method and the setting of enable-multibyte-characters.") |
| 719 | (prompt, initial_input, history, default_value, inherit_input_method) | 719 | (prompt, initial_input, history, default_value, inherit_input_method) |
| 720 | Lisp_Object prompt, initial_input, history, default_value; | 720 | Lisp_Object prompt, initial_input, history, default_value; |
| 721 | Lisp_Object inherit_input_method; | 721 | Lisp_Object inherit_input_method; |
| @@ -728,8 +728,8 @@ The forth arg INHERIT-INPUT-METHOD non-nil means the minibuffer inherits\n\ | |||
| 728 | DEFUN ("read-no-blanks-input", Fread_no_blanks_input, Sread_no_blanks_input, 1, 3, 0, | 728 | DEFUN ("read-no-blanks-input", Fread_no_blanks_input, Sread_no_blanks_input, 1, 3, 0, |
| 729 | "Args PROMPT and INIT, strings. Read a string from the terminal, not allowing blanks.\n\ | 729 | "Args PROMPT and INIT, strings. Read a string from the terminal, not allowing blanks.\n\ |
| 730 | Prompt with PROMPT, and provide INIT as an initial value of the input string.\n\ | 730 | Prompt with PROMPT, and provide INIT as an initial value of the input string.\n\ |
| 731 | The third optional arg INHERIT-INPUT-METHOD non-nil means the minibuffer\n\ | 731 | Third arg INHERIT-INPUT-METHOD, if non-nil, means the minibuffer inherits\n\ |
| 732 | inherits the current input method.") | 732 | the current input method and the setting of enable-multibyte-characters.") |
| 733 | (prompt, init, inherit_input_method) | 733 | (prompt, init, inherit_input_method) |
| 734 | Lisp_Object prompt, init, inherit_input_method; | 734 | Lisp_Object prompt, init, inherit_input_method; |
| 735 | { | 735 | { |
| @@ -1192,7 +1192,7 @@ HIST, if non-nil, specifies a history list\n\ | |||
| 1192 | DEF, if non-nil, is the default value.\n\ | 1192 | DEF, if non-nil, is the default value.\n\ |
| 1193 | \n\ | 1193 | \n\ |
| 1194 | If INHERIT-INPUT-METHOD is non-nil, the minibuffer inherits\n\ | 1194 | If INHERIT-INPUT-METHOD is non-nil, the minibuffer inherits\n\ |
| 1195 | the current input method.\n\ | 1195 | the current input method and the setting of enable-multibyte-characters.\n\ |
| 1196 | \n\ | 1196 | \n\ |
| 1197 | Completion ignores case if the ambient value of\n\ | 1197 | Completion ignores case if the ambient value of\n\ |
| 1198 | `completion-ignore-case' is non-nil." | 1198 | `completion-ignore-case' is non-nil." |