how to get semantic to shut up

2004-09-29 Thread Raul Acevedo
How do I get semantic to shut up?

It has a really, really annoying habit of constantly filling the
minibuffer with annoying messages like incremental parser error and
Variables: foo bar and who knows what other nonsense.  I really
couldn't care less.

Is there some global setting to tell it to keep quiet and do its job?

Raul



Re: how to get semantic to shut up

2004-09-29 Thread eric
On Wed, 29 Sep 2004 13:39:54 -0700, Raul Acevedo wrote:
 How do I get semantic to shut up?
 
 It has a really, really annoying habit of constantly filling the
 minibuffer with annoying messages like incremental parser error and
 Variables: foo bar and who knows what other nonsense.  I really
 couldn't care less.
 
 Is there some global setting to tell it to keep quiet and do its job?

Most of the old debug messages in semantic are gone.
The incremental parser error sounds like a bug that needs some reproduction
steps so it can be fixed.
The Variables: ... sounds like `semantic-idle-summary-mode'.
If you don't like that, you should probably disable
`semantic-idle-completions-mode' too.

Eric


refactoring in jdee

2004-09-29 Thread Raul Acevedo
I know this question comes up at least once a year.  I figure it's about
time to ask again, in case new tools have come up.

How do you do refactoring in Emacs/JDEE?  Are there plans to include
refactoring into JDEE at some point?

Raul



Re: how to get semantic to shut up

2004-09-29 Thread Raul Acevedo
Thanks!

On Wed, 2004-09-29 at 20:46 +, [EMAIL PROTECTED] wrote:
 On Wed, 29 Sep 2004 13:39:54 -0700, Raul Acevedo wrote:
  How do I get semantic to shut up?
  
  It has a really, really annoying habit of constantly filling the
  minibuffer with annoying messages like incremental parser error and
  Variables: foo bar and who knows what other nonsense.  I really
  couldn't care less.
  
  Is there some global setting to tell it to keep quiet and do its job?
 
 Most of the old debug messages in semantic are gone.
 The incremental parser error sounds like a bug that needs some reproduction
 steps so it can be fixed.
 The Variables: ... sounds like `semantic-idle-summary-mode'.
 If you don't like that, you should probably disable
 `semantic-idle-completions-mode' too.
 
 Eric



Re: how to get semantic to shut up

2004-09-29 Thread Raul Acevedo
On Wed, 2004-09-29 at 20:46 +, [EMAIL PROTECTED] wrote:

 Most of the old debug messages in semantic are gone.
 The incremental parser error sounds like a bug that needs some reproduction
 steps so it can be fixed.
 The Variables: ... sounds like `semantic-idle-summary-mode'.
 If you don't like that, you should probably disable
 `semantic-idle-completions-mode' too.

I'm still getting messages from semantic-edits-incremental-parser
(incremental parser error, Update Tag Table: blah, etc.).

Looks like there's no easy way to disable these, short of either
completely disabling the semantic incremental parser or of redefining
working-temp-message to be a no-op.  Is there a major disadvantage to
doing either of those?

Raul



Re: how to get semantic to shut up

2004-09-29 Thread Raul Acevedo
On Wed, 2004-09-29 at 16:31 -0700, [EMAIL PROTECTED] wrote:

  Looks like there's no easy way to disable these, short of either
  completely disabling the semantic incremental parser or of redefining
  working-temp-message to be a no-op.  Is there a major disadvantage to
  doing either of those?
 
 I would expect that.  The key now is to find out what editing situation causes
 it to throw the error, and to get a stack trace from it next time it occurs.
 If there is a way to narrow it down, that would be useful.

I've rarely seen the error messages, so I'm fine with those happening
rarely.  But the other messages aren't error messages;
semantic-edits-incremental-parser-1 calls working-temp-message for a lot
of informative messages.  There should be a flag that tells it not to
display those, unless you're debugging semantic or happen to care.

Raul



Re: how to get semantic to shut up

2004-09-29 Thread eric
On Wed, 29 Sep 2004 15:04:25 -0700, Raul Acevedo wrote:

 On Wed, 2004-09-29 at 20:46 +, [EMAIL PROTECTED] wrote:
 
  Most of the old debug messages in semantic are gone.
  The incremental parser error sounds like a bug that needs some reproduction
  steps so it can be fixed.
  The Variables: ... sounds like `semantic-idle-summary-mode'.
  If you don't like that, you should probably disable
  `semantic-idle-completions-mode' too.
 
 I'm still getting messages from semantic-edits-incremental-parser
 (incremental parser error, Update Tag Table: blah, etc.).
 
 Looks like there's no easy way to disable these, short of either
 completely disabling the semantic incremental parser or of redefining
 working-temp-message to be a no-op.  Is there a major disadvantage to
 doing either of those?

I would expect that.  The key now is to find out what editing situation causes
it to throw the error, and to get a stack trace from it next time it occurs.
If there is a way to narrow it down, that would be useful.

Eric


Re: how to get semantic to shut up

2004-09-29 Thread eric
On Wed, 29 Sep 2004 16:34:47 -0700, Raul Acevedo wrote:
 I've rarely seen the error messages, so I'm fine with those happening
 rarely.  But the other messages aren't error messages;
 semantic-edits-incremental-parser-1 calls working-temp-message for a lot
 of informative messages.  There should be a flag that tells it not to
 display those, unless you're debugging semantic or happen to care.

Hmm, you are right.  I thought they were under some sort of verbosity flag, but
I can't find it anymore.  I'll add one.  I usually run with verbosities turned on
to search for issues so I tend not to notice these things.

Eric