diff options
| author | Bastien Guerry | 2014-03-05 08:04:01 +0100 |
|---|---|---|
| committer | Bastien Guerry | 2014-03-05 08:04:01 +0100 |
| commit | 65cdacb51ba7324c19adb7c18581fc5cb1402c94 (patch) | |
| tree | 1eb7a217e83ec5d25988fc1d721597cc965540da | |
| parent | e6e8a5eb4dadbf5a0e7949a4aee6eab3dc5dec2d (diff) | |
| download | emacs-65cdacb51ba7324c19adb7c18581fc5cb1402c94.tar.gz emacs-65cdacb51ba7324c19adb7c18581fc5cb1402c94.zip | |
Revert 2014-03-04T14:33:56Z!bzg@gnu.org.
Thanks to Leo for reporting this.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/minibuffer.el | 2 |
2 files changed, 1 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 939f150e56e..d799dbbd961 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -16,11 +16,6 @@ | |||
| 16 | * net/tramp-sh.el (tramp-sh-handle-vc-registered): Do not call | 16 | * net/tramp-sh.el (tramp-sh-handle-vc-registered): Do not call |
| 17 | `tramp-send-command-and-check'. | 17 | `tramp-send-command-and-check'. |
| 18 | 18 | ||
| 19 | 2014-03-04 Bastien Guerry <bzg@gnu.org> | ||
| 20 | |||
| 21 | * minibuffer.el (minibuffer-completion-help): Use 0 as the | ||
| 22 | fallback value for `base-size'. (Bug#16933) | ||
| 23 | |||
| 24 | 2014-03-04 Juanma Barranquero <lekktu@gmail.com> | 19 | 2014-03-04 Juanma Barranquero <lekktu@gmail.com> |
| 25 | 20 | ||
| 26 | * hexl.el (hexl-address-region, hexl-ascii-region) | 21 | * hexl.el (hexl-address-region, hexl-ascii-region) |
diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el index 526fdb62bc3..bbb7114610d 100644 --- a/lisp/minibuffer.el +++ b/lisp/minibuffer.el | |||
| @@ -1751,7 +1751,7 @@ variables.") | |||
| 1751 | (if completions "Sole completion" "No completions"))) | 1751 | (if completions "Sole completion" "No completions"))) |
| 1752 | 1752 | ||
| 1753 | (let* ((last (last completions)) | 1753 | (let* ((last (last completions)) |
| 1754 | (base-size (or (cdr last) 0)) | 1754 | (base-size (cdr last)) |
| 1755 | (prefix (unless (zerop base-size) (substring string 0 base-size))) | 1755 | (prefix (unless (zerop base-size) (substring string 0 base-size))) |
| 1756 | (all-md (completion--metadata (buffer-substring-no-properties | 1756 | (all-md (completion--metadata (buffer-substring-no-properties |
| 1757 | start (point)) | 1757 | start (point)) |