From 9994cc693bce83b87be57984364424211e02135e Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Tue, 7 Mar 2000 10:31:12 +0000 Subject: [PATCH] (Fminibuffer_complete): Move point to ZV when input is complete but not unique. --- src/ChangeLog | 5 +++++ src/minibuf.c | 2 ++ 2 files changed, 7 insertions(+) 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; } -- 2.39.5