From: Richard M. Stallman Date: Mon, 1 Jul 2002 07:50:37 +0000 (+0000) Subject: (Fminibuffer_complete_and_exit): Move to end of buffer for completion. X-Git-Tag: ttn-vms-21-2-B4~14374 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8db426c786b66e94041a692ef18e301afc6ba913;p=emacs.git (Fminibuffer_complete_and_exit): Move to end of buffer for completion. --- diff --git a/src/minibuf.c b/src/minibuf.c index 3d9451b2bc9..f4aeb0f8c38 100644 --- a/src/minibuf.c +++ b/src/minibuf.c @@ -1861,6 +1861,7 @@ a repetition of this command will exit. */) goto exit; /* Call do_completion, but ignore errors. */ + SET_PT (ZV); val = internal_condition_case (complete_and_exit_1, Qerror, complete_and_exit_2);