* minibuffer.el (minibuffer-completion-help): Use 0 as the
fallback value for `base-size'. (Bug#16933)
+2014-03-04 Bastien Guerry <bzg@gnu.org>
+
+ * minibuffer.el (minibuffer-completion-help): Use 0 as the
+ fallback value for `base-size'. (Bug#16933)
+
2014-03-04 Juanma Barranquero <lekktu@gmail.com>
* hexl.el (hexl-address-region, hexl-ascii-region)
(if completions "Sole completion" "No completions")))
(let* ((last (last completions))
- (base-size (cdr last))
+ (base-size (or (cdr last) 0))
(prefix (unless (zerop base-size) (substring string 0 base-size)))
(all-md (completion--metadata (buffer-substring-no-properties
start (point))