# HG changeset patch # User Stephen Eglen # Date 885490136 0 # Node ID 53a78231e1c9bb6f8abaaea86d18e94e70e44809 # Parent fa4b984986507377f5e9bda1087166a684cee18b (Fread-string): Doc fix. (Fread-from-minibuffer): Doc fix. diff -r fa4b98498650 -r 53a78231e1c9 src/minibuf.c --- a/src/minibuf.c Thu Jan 22 10:58:45 1998 +0000 +++ b/src/minibuf.c Thu Jan 22 17:28:56 1998 +0000 @@ -634,7 +634,7 @@ the empty string.\n\ Seventh arg INHERIT-INPUT-METHOD, if non-nil, means the minibuffer inherits\n\ the current input method and the setting of enable-multibyte-characters.\n\ -If the variable `minibuffer-allow-text-properties is non-nil,\n\ +If the variable `minibuffer-allow-text-properties' is non-nil,\n\ then the string which is returned includes whatever text properties\n\ were present in the minibuffer. Otherwise the value has no text properties.") (prompt, initial_contents, keymap, read, hist, default_value, inherit_input_method) @@ -736,7 +736,10 @@ The third arg HISTORY, if non-nil, specifies a history list\n\ and optionally the initial position in the list.\n\ See `read-from-minibuffer' for details of HISTORY argument.\n\ -Fourth arg INHERIT-INPUT-METHOD, if non-nil, means the minibuffer inherits\n\ +Fourth arg DEFAULT-VALUE is the default value. If non-nil, it is used\n\ + for history commands, and as the value to return if the user enters\n\ + the empty string.\n\ +Fifth arg INHERIT-INPUT-METHOD, if non-nil, means the minibuffer inherits\n\ the current input method and the setting of enable-multibyte-characters.") (prompt, initial_input, history, default_value, inherit_input_method) Lisp_Object prompt, initial_input, history, default_value;