From: Gerd Moellmann Date: Tue, 7 Mar 2000 10:31:12 +0000 (+0000) Subject: (Fminibuffer_complete): Move point to ZV when input is X-Git-Tag: emacs-pretest-21.0.90~4743 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9994cc693bce83b87be57984364424211e02135e;p=emacs.git (Fminibuffer_complete): Move point to ZV when input is complete but not unique. --- diff --git a/src/ChangeLog b/src/ChangeLog index 5f3b9f46256..8bca4f70793 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2000-03-07 Gerd Moellmann + + * minibuf.c (Fminibuffer_complete): Move point to ZV when input is + complete but not unique. + 2000-03-06 Gerd Moellmann * process.c (send_process): Remove local variable `procname' that diff --git a/src/minibuf.c b/src/minibuf.c index 75bc13ebff9..4307c03d1c3 100644 --- a/src/minibuf.c +++ b/src/minibuf.c @@ -1718,6 +1718,8 @@ scroll the window of possible completions.") break; case 3: + if (PT != ZV) + Fgoto_char (make_number (ZV)); temp_echo_area_glyphs (" [Complete, but not unique]"); break; }