]> git.eshelyaron.com Git - emacs.git/commitdiff
(completion-common-substring): Use `completion-common-substring' prior to `completion...
authorMasatake YAMATO <jet@gyve.org>
Mon, 24 Oct 2005 16:56:53 +0000 (16:56 +0000)
committerMasatake YAMATO <jet@gyve.org>
Mon, 24 Oct 2005 16:56:53 +0000 (16:56 +0000)
lisp/ChangeLog
lisp/simple.el

index 0750137ceda93e69409554e1c376a92d233059d5..c8cdf66c6453a8986e131295aec715b069b602aa 100644 (file)
@@ -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.
index 8fbfaffaec6800fe9fa5e5d71501340bf971f7a6..9666f13af94e2ee01eb15a758b7a13739a91f295 100644 (file)
@@ -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))