summaryrefslogtreecommitdiff
path: root/src/minibuf.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1993-09-14 12:09:15 +0000
committerRichard M. Stallman <rms@gnu.org>1993-09-14 12:09:15 +0000
commit180da5ad63afb3236a316fa4de7bbc112c32b64f (patch)
tree0a5c2a907ebad6c050b737e03e0e6fd24a5278de /src/minibuf.c
parent1502b22493ff2fcfca01d8c12b3f26000882f021 (diff)
downloademacs-180da5ad63afb3236a316fa4de7bbc112c32b64f.tar.gz
(Fminibuffer_complete_word): Pass new arg to insert_from_string*.
Diffstat (limited to 'src/minibuf.c')
-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.")
{
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;
}