diff options
| author | Richard M. Stallman | 1993-09-14 12:09:15 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-09-14 12:09:15 +0000 |
| commit | 3cab9ae4e1bbf0e8ef2ff7e00147d5225cad40ba (patch) | |
| tree | c492612d8919b9b32ab5c9348de100018ad71038 /src | |
| parent | be91036a03b7bed905fe2b14b71ae01838bc5bff (diff) | |
| download | emacs-3cab9ae4e1bbf0e8ef2ff7e00147d5225cad40ba.tar.gz emacs-3cab9ae4e1bbf0e8ef2ff7e00147d5225cad40ba.zip | |
(Fminibuffer_complete_word): Pass new arg to insert_from_string*.
Diffstat (limited to 'src')
| -rw-r--r-- | src/minibuf.c | 4 |
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 | ||