From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Tassilo Horn Newsgroups: gmane.emacs.devel Subject: Re: emacs from cvs eat my processor on linux Date: Wed, 18 Oct 2006 15:48:07 +0200 Message-ID: <87ods9g2g8.fsf@baldur.nicundtas.de> References: <13ebd1d13e865f.13e865f13ebd1d@net.lu.se> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1161179410 4379 80.91.229.2 (18 Oct 2006 13:50:10 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 18 Oct 2006 13:50:10 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Oct 18 15:50:07 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1GaBnt-0005L9-Bv for ged-emacs-devel@m.gmane.org; Wed, 18 Oct 2006 15:49:53 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GaBns-0003sw-SB for ged-emacs-devel@m.gmane.org; Wed, 18 Oct 2006 09:49:52 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1GaBn2-0002nJ-JB for emacs-devel@gnu.org; Wed, 18 Oct 2006 09:49:00 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1GaBn0-0002kZ-T5 for emacs-devel@gnu.org; Wed, 18 Oct 2006 09:48:59 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GaBn0-0002jo-DF for emacs-devel@gnu.org; Wed, 18 Oct 2006 09:48:58 -0400 Original-Received: from [80.91.229.2] (helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA:32) (Exim 4.52) id 1GaBn0-0002q7-85 for emacs-devel@gnu.org; Wed, 18 Oct 2006 09:48:58 -0400 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1GaBmg-00052Y-ST for emacs-devel@gnu.org; Wed, 18 Oct 2006 15:48:38 +0200 Original-Received: from dslb-084-063-032-092.pools.arcor-ip.net ([84.63.32.92]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 18 Oct 2006 15:48:38 +0200 Original-Received: from heimdall by dslb-084-063-032-092.pools.arcor-ip.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 18 Oct 2006 15:48:38 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-To: emacs-devel@gnu.org Original-Lines: 58 Original-X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: dslb-084-063-032-092.pools.arcor-ip.net User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/22.0.50 (gnu/linux) Cancel-Lock: sha1:8yCGwjEUebpTZClR9G8XACulsVU= X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:60878 Archived-At: LENNART BORGMAN writes: Hi Lennart, > Thanks Tassilo, I have tested with the version of semantic-idle.el > that you sent me, but I still get 100% CPU in Emacs. Sorry, I cannot reproduce it. Did you say that not loading cedet fixes the bug? If yes, then it may have something to do with two patches my distribution applies to cedet-1.0_pre3. --8<---------------cut here---------------start------------->8--- diff -ur cedet-1.0pre3.orig/eieio/eieio-tests.el cedet-1.0pre3/eieio/eieio-tests.el --- cedet-1.0pre3.orig/eieio/eieio-tests.el 2005-06-29 22:08:02.000000000 -0500 +++ cedet-1.0pre3/eieio/eieio-tests.el 2006-05-15 11:28:22.000000000 -0500 @@ -469,8 +469,9 @@ ;;; Test function type in a class ;; -(defvar class-typep-var 0 - "A variable used in an initform.") +(eval-when-compile + (defvar class-typep-var 0 + "A variable used in an initform.")) (setq class-typep-var 1) --8<---------------cut here---------------end--------------->8--- and --8<---------------cut here---------------start------------->8--- --- cedet-1.0pre3/speedbar/sb-info.el 2005-06-30 05:08:02.000000000 +0200 +++ cedet-1.0pre3/speedbar/sb-infonew.el 2006-06-27 14:43:32.000000000 +0200 @@ -249,7 +249,7 @@ ;;; Overriding preinstalled code. ;;;###autoload -(eval-after-load "info" '(require 'sb-info)) - (provide 'sb-info) + +(eval-after-load "info" '(require 'sb-info)) ;;; sb-info.el ends here --8<---------------cut here---------------end--------------->8--- These two patches applied to cedet-1.0_pre3 + the semantic-idle.el I've sent you should give the exact version I'm working with here without problems. If the bug occurs without loading cedet at all, it is caused by another package... Bye, Tassilo -- "Emacs is not a development tool but a way of life." - David Kastrup in alt.religion.emacs -