changeset 4715:494fa3445d1e

(Fminibuffer_complete_word): Pass new arg to insert_from_string*.
author Richard M. Stallman <rms@gnu.org>
date Tue, 14 Sep 1993 12:09:15 +0000
parents 350231e38e68
children 4382ad05411e
files src/minibuf.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/minibuf.c	Tue Sep 14 12:08:49 1993 +0000
+++ b/src/minibuf.c	Tue Sep 14 12:09:15 1993 +0000
@@ -1187,7 +1187,7 @@
 	  {
 	    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 @@
   /* 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;
 }