aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1997-09-02 05:22:07 +0000
committerRichard M. Stallman1997-09-02 05:22:07 +0000
commitc8c1552149b7d2c3047f0a9a166c389fd73fa3e3 (patch)
tree29f606623ec96a06400ecce39271f64bcf987b97 /src
parent63f205ae7269ee64eda20053d103b1dff88ba002 (diff)
downloademacs-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.c14
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\
608Sixth arg DEFAULT-VALUE is the default value. If non-nil, it is used\n\ 608Sixth 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\
611Seventh arg INHERIT-INPUT-METHOD non-nil means the minibuffer inherits\n\ 611Seventh 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\
613If the variable `minibuffer-allow-text-properties is non-nil,\n\ 613If 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\
714The third arg HISTORY, if non-nil, specifies a history list\n\ 714The 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\
716See `read-from-minibuffer' for details of HISTORY argument.\n\ 716See `read-from-minibuffer' for details of HISTORY argument.\n\
717The forth arg INHERIT-INPUT-METHOD non-nil means the minibuffer inherits\n\ 717Fourth 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\
728DEFUN ("read-no-blanks-input", Fread_no_blanks_input, Sread_no_blanks_input, 1, 3, 0, 728DEFUN ("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\
730Prompt with PROMPT, and provide INIT as an initial value of the input string.\n\ 730Prompt with PROMPT, and provide INIT as an initial value of the input string.\n\
731The third optional arg INHERIT-INPUT-METHOD non-nil means the minibuffer\n\ 731Third arg INHERIT-INPUT-METHOD, if non-nil, means the minibuffer inherits\n\
732 inherits the current input method.") 732the 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\
1192DEF, if non-nil, is the default value.\n\ 1192DEF, if non-nil, is the default value.\n\
1193\n\ 1193\n\
1194If INHERIT-INPUT-METHOD is non-nil, the minibuffer inherits\n\ 1194If 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\
1197Completion ignores case if the ambient value of\n\ 1197Completion ignores case if the ambient value of\n\
1198 `completion-ignore-case' is non-nil." 1198 `completion-ignore-case' is non-nil."