diff options
| -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 () Lisp_Object last; struct gcpro gcpro1, gcpro2; - GCPRO2 (completion, last); completion = Ftry_completion (Fbuffer_string (), Vminibuffer_completion_table, Vminibuffer_completion_predicate); last = last_exact_completion; last_exact_completion = Qnil; + GCPRO2 (completion, last); + if (NILP (completion)) { bitch_at_user (); |
