+2008-05-29 Stefan Monnier <monnier@iro.umontreal.ca>
+
+ * minibuffer.el (completion-pcm-all-completions): Add the base-size.
+
2008-05-29 Juanma Barranquero <lekktu@gmail.com>
* icomplete.el (icomplete-prospects-height): Add :group.
(defun completion-pcm-all-completions (string table pred point)
(destructuring-bind (pattern all &optional prefix suffix)
(completion-pcm--find-all-completions string table pred point)
- (completion-pcm--hilit-commonality pattern all)))
+ (when all
+ (nconc (completion-pcm--hilit-commonality pattern all)
+ (length prefix)))))
(defun completion-pcm--merge-completions (strs pattern)
"Extract the commonality in STRS, with the help of PATTERN."