Thomas Haselberger wrote:

 > > 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

That will work, but you probably want to do:

    (custom-set-variables
     '(global-semantic-highlight-by-attribute-mode nil)
     '(global-semantic-show-tag-boundaries-mode nil))

That not only is cleaner, but also faster, since the mode will be
completely disabled and its code won't run in the first place. 

Raul

Reply via email to