From: Richard M. Stallman Date: Tue, 14 Sep 1993 12:09:15 +0000 (+0000) Subject: (Fminibuffer_complete_word): Pass new arg to insert_from_string*. X-Git-Tag: emacs-19.34~11136 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3cab9ae4e1bbf0e8ef2ff7e00147d5225cad40ba;p=emacs.git (Fminibuffer_complete_word): Pass new arg to insert_from_string*. --- diff --git a/src/minibuf.c b/src/minibuf.c index b01d728864c..d9f1a35620d 100644 --- a/src/minibuf.c +++ b/src/minibuf.c @@ -1187,7 +1187,7 @@ is added, provided that matches some possible completion.") { tem = substituted; Ferase_buffer (); - insert_from_string (tem, 0, XSTRING (tem)->size); + insert_from_string (tem, 0, XSTRING (tem)->size, 0); } } buffer_string = XSTRING (tem)->data; @@ -1252,7 +1252,7 @@ is added, provided that matches some possible completion.") /* Otherwise insert in minibuffer the chars we got */ Ferase_buffer (); - insert_from_string (completion, 0, i); + insert_from_string (completion, 0, i, 1); return Qt; }