comparison src/minibuf.c @ 20754:53a78231e1c9

(Fread-string): Doc fix. (Fread-from-minibuffer): Doc fix.
author Stephen Eglen <stephen@gnu.org>
date Thu, 22 Jan 1998 17:28:56 +0000
parents ed9ed828415e
children 7a730831aa0e
comparison
equal deleted inserted replaced
20753:fa4b98498650 20754:53a78231e1c9
632 Sixth arg DEFAULT-VALUE is the default value. If non-nil, it is used\n\ 632 Sixth arg DEFAULT-VALUE is the default value. If non-nil, it is used\n\
633 for history commands, and as the value to return if the user enters\n\ 633 for history commands, and as the value to return if the user enters\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)
641 */ 641 */
642 642
734 "Read a string from the minibuffer, prompting with string PROMPT.\n\ 734 "Read a string from the minibuffer, prompting with string PROMPT.\n\
735 If non-nil, second arg INITIAL-INPUT is a string to insert before reading.\n\ 735 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;
743 Lisp_Object inherit_input_method; 746 Lisp_Object inherit_input_method;
744 { 747 {