summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorMasatake YAMATO <jet@gyve.org>2005-10-24 16:56:53 +0000
committerMasatake YAMATO <jet@gyve.org>2005-10-24 16:56:53 +0000
commitdc447cc519b9e51d0f5a86c7da84ce7bc7648bf8 (patch)
treedd4bc06e31e7efefa39405fb98d1d9df55efd46e /lisp
parent8c6fac61df48f6d6a2238adb81c584a9393ea00b (diff)
downloademacs-dc447cc519b9e51d0f5a86c7da84ce7bc7648bf8.tar.gz
(completion-common-substring): Use `completion-common-substring' prior to `completion-base-size'.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/simple.el8
2 files changed, 9 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 0750137ceda..c8cdf66c645 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2005-10-25 Masatake YAMATO <jet@gyve.org>
+
+ * simple.el (completion-common-substring): Use `completion-common-substring'
+ prior to `completion-base-size'.
+
2005-10-24 Kenichi Handa <handa@m17n.org>
* international/utf-7.el (utf-7): Add autoload cookie.
diff --git a/lisp/simple.el b/lisp/simple.el
index 8fbfaffaec6..9666f13af94 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -4921,11 +4921,11 @@ is the substring.)")
(funcall (get minibuffer-completion-table 'completion-base-size-function)))
(setq completion-base-size 0))))
;; Put faces on first uncommon characters and common parts.
- (when (or completion-base-size completion-common-substring)
+ (when (or completion-common-substring completion-base-size)
(let* ((common-string-length
- (if completion-base-size
- (- (length mbuf-contents) completion-base-size)
- (length completion-common-substring)))
+ (if completion-common-substring
+ (length completion-common-substring)
+ (- (length mbuf-contents) completion-base-size)))
(element-start (next-single-property-change
(point-min)
'mouse-face))