1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-01 11:14:55 +00:00

(completion-setup-function): Put completions-common-part

face on full completion string too (i.e. completion string without
completions-first-difference face).
This commit is contained in:
Juri Linkov 2005-12-04 02:42:29 +00:00
parent 544d874f7f
commit a0bd072bed

View File

@ -4970,12 +4970,13 @@ is the substring.)")
(< (setq element-common-end
(+ element-start common-string-length))
maxp))
(when (and (get-char-property element-start 'mouse-face)
(get-char-property element-common-end 'mouse-face))
(put-text-property element-start element-common-end
'font-lock-face 'completions-common-part)
(put-text-property element-common-end (1+ element-common-end)
'font-lock-face 'completions-first-difference)))))
(when (get-char-property element-start 'mouse-face)
(if (get-char-property (1- element-common-end) 'mouse-face)
(put-text-property element-start element-common-end
'font-lock-face 'completions-common-part))
(if (get-char-property element-common-end 'mouse-face)
(put-text-property element-common-end (1+ element-common-end)
'font-lock-face 'completions-first-difference))))))
;; Insert help string.
(goto-char (point-min))
(if (display-mouse-p)