diff options
author | Gerd Moellmann <gerd@gnu.org> | 2000-03-07 10:31:12 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2000-03-07 10:31:12 +0000 |
commit | 9994cc693bce83b87be57984364424211e02135e (patch) | |
tree | e60d865c748e4dfdde23a6d4d3570844c55dad65 /src/minibuf.c | |
parent | 63f6b2c46d2f6a56ae697b8e4617cefb10aa4408 (diff) | |
download | emacs-9994cc693bce83b87be57984364424211e02135e.tar.gz |
(Fminibuffer_complete): Move point to ZV when input is
complete but not unique.
Diffstat (limited to 'src/minibuf.c')
-rw-r--r-- | src/minibuf.c | 2 |
1 files changed, 2 insertions, 0 deletions
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; } |