aboutsummaryrefslogtreecommitdiffstats
path: root/src/minibuf.c
diff options
context:
space:
mode:
authorGerd Moellmann <[email protected]>2000-03-07 10:31:12 +0000
committerGerd Moellmann <[email protected]>2000-03-07 10:31:12 +0000
commit9994cc693bce83b87be57984364424211e02135e (patch)
treee60d865c748e4dfdde23a6d4d3570844c55dad65 /src/minibuf.c
parent63f6b2c46d2f6a56ae697b8e4617cefb10aa4408 (diff)
(Fminibuffer_complete): Move point to ZV when input is
complete but not unique.
Diffstat (limited to 'src/minibuf.c')
-rw-r--r--src/minibuf.c2
1 files changed, 2 insertions, 0 deletions
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;
}