From 9994cc693bce83b87be57984364424211e02135e Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Tue, 7 Mar 2000 10:31:12 +0000 Subject: (Fminibuffer_complete): Move point to ZV when input is complete but not unique. --- src/minibuf.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/minibuf.c') diff --git a/src/minibuf.c b/src/minibuf.c index 75bc13ebff..4307c03d1c 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; } -- cgit v1.2.3