> This is what is displayed by describe-text-properties (interactively):
>
> Text content at position 4688:
>
> There are text properties here:
>   face                 [font-lock-function-name-face]
>   fontified            t
>
> Mouseover the button [font-lock-function-name-face], which is the only
> hot zone, shows no highlighting. It should presumably be highlighted
> on mouseover.

Since this button works like a link, perhaps it should be highlighted
with mouse-face.

> In my customized Emacs, the "face" and "fontified" text, and all
> surrounding whitespace, is underlined - haven't taken the time to
> find out why.
>
> In Emacs -q, nothing is underlined, and font-lock-function-name-face
> is bold.

When Emacs can't display italic, it uses underline.  The file faces.el
has this face spec:

(defface italic
  '((((supports :slant italic))
     :slant italic)
    (((supports :underline t))
     :underline t)
    (t
     ;; default to italic, even it doesn't appear to be supported,
     ;; because in some cases the display engine will do it's own
     ;; workaround (to `dim' on ttys)
     :slant italic))
  "Basic italic font."
  :group 'basic-faces)

-- 
Juri Linkov
http://www.jurta.org/emacs/



_______________________________________________
Emacs-pretest-bug mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/emacs-pretest-bug

Reply via email to