diff options
| author | Stephen Eglen | 1998-01-22 17:28:56 +0000 |
|---|---|---|
| committer | Stephen Eglen | 1998-01-22 17:28:56 +0000 |
| commit | 19a4cb2526882531f2e85aee530595be9fefe1af (patch) | |
| tree | 1d879353e48972c204dfab460f10b83159160494 /src | |
| parent | af933e77860ee3bdb208a85ad4e6c433dc6b93e5 (diff) | |
| download | emacs-19a4cb2526882531f2e85aee530595be9fefe1af.tar.gz emacs-19a4cb2526882531f2e85aee530595be9fefe1af.zip | |
(Fread-string): Doc fix.
(Fread-from-minibuffer): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/minibuf.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/minibuf.c b/src/minibuf.c index a35fcf4ab10..f4e8fc6f886 100644 --- a/src/minibuf.c +++ b/src/minibuf.c | |||
| @@ -634,7 +634,7 @@ Sixth arg DEFAULT-VALUE is the default value. If non-nil, it is used\n\ | |||
| 634 | the empty string.\n\ | 634 | the empty string.\n\ |
| 635 | Seventh arg INHERIT-INPUT-METHOD, if non-nil, means the minibuffer inherits\n\ | 635 | Seventh arg INHERIT-INPUT-METHOD, if non-nil, means the minibuffer inherits\n\ |
| 636 | the current input method and the setting of enable-multibyte-characters.\n\ | 636 | the current input method and the setting of enable-multibyte-characters.\n\ |
| 637 | If the variable `minibuffer-allow-text-properties is non-nil,\n\ | 637 | If the variable `minibuffer-allow-text-properties' is non-nil,\n\ |
| 638 | then the string which is returned includes whatever text properties\n\ | 638 | then the string which is returned includes whatever text properties\n\ |
| 639 | were present in the minibuffer. Otherwise the value has no text properties.") | 639 | were present in the minibuffer. Otherwise the value has no text properties.") |
| 640 | (prompt, initial_contents, keymap, read, hist, default_value, inherit_input_method) | 640 | (prompt, initial_contents, keymap, read, hist, default_value, inherit_input_method) |
| @@ -736,7 +736,10 @@ If non-nil, second arg INITIAL-INPUT is a string to insert before reading.\n\ | |||
| 736 | The third arg HISTORY, if non-nil, specifies a history list\n\ | 736 | The third arg HISTORY, if non-nil, specifies a history list\n\ |
| 737 | and optionally the initial position in the list.\n\ | 737 | and optionally the initial position in the list.\n\ |
| 738 | See `read-from-minibuffer' for details of HISTORY argument.\n\ | 738 | See `read-from-minibuffer' for details of HISTORY argument.\n\ |
| 739 | Fourth arg INHERIT-INPUT-METHOD, if non-nil, means the minibuffer inherits\n\ | 739 | Fourth arg DEFAULT-VALUE is the default value. If non-nil, it is used\n\ |
| 740 | for history commands, and as the value to return if the user enters\n\ | ||
| 741 | the empty string.\n\ | ||
| 742 | Fifth arg INHERIT-INPUT-METHOD, if non-nil, means the minibuffer inherits\n\ | ||
| 740 | the current input method and the setting of enable-multibyte-characters.") | 743 | the current input method and the setting of enable-multibyte-characters.") |
| 741 | (prompt, initial_input, history, default_value, inherit_input_method) | 744 | (prompt, initial_input, history, default_value, inherit_input_method) |
| 742 | Lisp_Object prompt, initial_input, history, default_value; | 745 | Lisp_Object prompt, initial_input, history, default_value; |