# HG changeset patch # User Richard M. Stallman # Date 887744665 0 # Node ID ccde9a52e7c18d1e67aa98355007ff506c81130c # Parent 81c1f55424f2d942a83fc6eddcce3e42b474ac3b (read_minibuf): Do use DEFALT in place of empty input when when expflag is nonzero. (Fread_no_blanks_input): Arg INIT renamed to INITIAL. diff -r 81c1f55424f2 -r ccde9a52e7c1 src/minibuf.c --- a/src/minibuf.c Tue Feb 17 07:26:46 1998 +0000 +++ b/src/minibuf.c Tue Feb 17 19:44:25 1998 +0000 @@ -469,6 +469,10 @@ unsigned char *p; int pos; + if (STRINGP (val) && XSTRING (val)->size == 0 + && STRINGP (defalt)) + val = defalt; + expr_and_pos = Fread_from_string (val, Qnil, Qnil); pos = XINT (Fcdr (expr_and_pos)); if (pos != XSTRING (val)->size) @@ -752,18 +756,18 @@ } DEFUN ("read-no-blanks-input", Fread_no_blanks_input, Sread_no_blanks_input, 1, 3, 0, - "Args PROMPT and INIT, strings. Read a string from the terminal, not allowing blanks.\n\ -Prompt with PROMPT, and provide INIT as an initial value of the input string.\n\ + "Read a string from the terminal, not allowing blanks.\n\ +Prompt with PROMPT, and provide INITIAL as an initial value of the input string.\n\ Third arg INHERIT-INPUT-METHOD, if non-nil, means the minibuffer inherits\n\ the current input method and the setting of enable-multibyte-characters.") - (prompt, init, inherit_input_method) - Lisp_Object prompt, init, inherit_input_method; + (prompt, initial, inherit_input_method) + Lisp_Object prompt, initial, inherit_input_method; { CHECK_STRING (prompt, 0); - if (! NILP (init)) - CHECK_STRING (init, 1); + if (! NILP (initial)) + CHECK_STRING (initial, 1); - return read_minibuf (Vminibuffer_local_ns_map, init, prompt, Qnil, + return read_minibuf (Vminibuffer_local_ns_map, initial, prompt, Qnil, 0, Qminibuffer_history, make_number (0), Qnil, 0, !NILP (inherit_input_method)); }