diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/minibuf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/minibuf.c b/src/minibuf.c index d188ff9a06e..fc3af0599d2 100644 --- a/src/minibuf.c +++ b/src/minibuf.c | |||
| @@ -1052,12 +1052,13 @@ do_completion () | |||
| 1052 | Lisp_Object last; | 1052 | Lisp_Object last; |
| 1053 | struct gcpro gcpro1, gcpro2; | 1053 | struct gcpro gcpro1, gcpro2; |
| 1054 | 1054 | ||
| 1055 | GCPRO2 (completion, last); | ||
| 1056 | completion = Ftry_completion (Fbuffer_string (), Vminibuffer_completion_table, | 1055 | completion = Ftry_completion (Fbuffer_string (), Vminibuffer_completion_table, |
| 1057 | Vminibuffer_completion_predicate); | 1056 | Vminibuffer_completion_predicate); |
| 1058 | last = last_exact_completion; | 1057 | last = last_exact_completion; |
| 1059 | last_exact_completion = Qnil; | 1058 | last_exact_completion = Qnil; |
| 1060 | 1059 | ||
| 1060 | GCPRO2 (completion, last); | ||
| 1061 | |||
| 1061 | if (NILP (completion)) | 1062 | if (NILP (completion)) |
| 1062 | { | 1063 | { |
| 1063 | bitch_at_user (); | 1064 | bitch_at_user (); |