diff options
| author | Gerd Moellmann | 2000-03-07 10:31:12 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-03-07 10:31:12 +0000 |
| commit | 9994cc693bce83b87be57984364424211e02135e (patch) | |
| tree | e60d865c748e4dfdde23a6d4d3570844c55dad65 /src | |
| parent | 63f6b2c46d2f6a56ae697b8e4617cefb10aa4408 (diff) | |
| download | emacs-9994cc693bce83b87be57984364424211e02135e.tar.gz emacs-9994cc693bce83b87be57984364424211e02135e.zip | |
(Fminibuffer_complete): Move point to ZV when input is
complete but not unique.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/minibuf.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 5f3b9f46256..8bca4f70793 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2000-03-07 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * minibuf.c (Fminibuffer_complete): Move point to ZV when input is | ||
| 4 | complete but not unique. | ||
| 5 | |||
| 1 | 2000-03-06 Gerd Moellmann <gerd@gnu.org> | 6 | 2000-03-06 Gerd Moellmann <gerd@gnu.org> |
| 2 | 7 | ||
| 3 | * process.c (send_process): Remove local variable `procname' that | 8 | * 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.") | |||
| 1718 | break; | 1718 | break; |
| 1719 | 1719 | ||
| 1720 | case 3: | 1720 | case 3: |
| 1721 | if (PT != ZV) | ||
| 1722 | Fgoto_char (make_number (ZV)); | ||
| 1721 | temp_echo_area_glyphs (" [Complete, but not unique]"); | 1723 | temp_echo_area_glyphs (" [Complete, but not unique]"); |
| 1722 | break; | 1724 | break; |
| 1723 | } | 1725 | } |