mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-04 06:31:13 -08:00
(Fminibuffer_complete_word): Pass new arg to insert_from_string*.
This commit is contained in:
parent
be91036a03
commit
3cab9ae4e1
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue