Mercurial > emacs
changeset 20921:ccde9a52e7c1
(read_minibuf): Do use DEFALT in place of empty input
when when expflag is nonzero.
(Fread_no_blanks_input): Arg INIT renamed to INITIAL.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 17 Feb 1998 19:44:25 +0000 |
parents | 81c1f55424f2 |
children | 3ae81bc17b19 |
files | src/minibuf.c |
diffstat | 1 files changed, 11 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- 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)); }