aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/minibuffer.el2
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
192014-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
242014-03-04 Juanma Barranquero <lekktu@gmail.com> 192014-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))