aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/minibuf.c4
1 files changed, 2 insertions, 2 deletions
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.")
1187 { 1187 {
1188 tem = substituted; 1188 tem = substituted;
1189 Ferase_buffer (); 1189 Ferase_buffer ();
1190 insert_from_string (tem, 0, XSTRING (tem)->size); 1190 insert_from_string (tem, 0, XSTRING (tem)->size, 0);
1191 } 1191 }
1192 } 1192 }
1193 buffer_string = XSTRING (tem)->data; 1193 buffer_string = XSTRING (tem)->data;
@@ -1252,7 +1252,7 @@ is added, provided that matches some possible completion.")
1252 /* Otherwise insert in minibuffer the chars we got */ 1252 /* Otherwise insert in minibuffer the chars we got */
1253 1253
1254 Ferase_buffer (); 1254 Ferase_buffer ();
1255 insert_from_string (completion, 0, i); 1255 insert_from_string (completion, 0, i, 1);
1256 return Qt; 1256 return Qt;
1257} 1257}
1258 1258