> -----Original Message----- > From: Petter Måhlén [mailto:[EMAIL PROTECTED] > Sent: Tuesday, May 11, 2004 13:16 > To: [EMAIL PROTECTED] > Subject: JDE 2.3.4beta3: strange "overlining" > > > Hi, > > I'm getting the weird effect shown in the attached GIF using > JDE 2.3.4beta3 and cedet1.0beta2 on Emacs 21.3. All > non-public methods are 'overlined', which is really not > pleasant. I guess it's some kind of highlighting of > non-public methods that has gone wrong - does anybody know of > a configuration setting to modify this behaviour or is it > possibly a bug?
I got rid of it by customizing semantic-highlight-attribute-face-private semantic-highlight-attribute-face-protected semantic-tag-boundary-face (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. '(ecb-default-general-face ((((class color) (background light)) (:height 0.95)))) '(nxml-comment-content-face ((t (:foreground "firebrick" :slant italic)))) '(semantic-highlight-attribute-face-private ((((class color) (background light)) (:overline nil)))) '(semantic-highlight-attribute-face-protected ((((class color) (background light)) (:overline nil)))) '(semantic-tag-boundary-face ((((class color) (background light)) (:overline nil))))) tom