From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Lennart Borgman (gmail)" Newsgroups: gmane.emacs.devel Subject: Re: Toio little error information from widgets Date: Wed, 07 Feb 2007 01:17:41 +0100 Message-ID: <45C91AA5.9030504@gmail.com> References: <45C914F9.1050405@gmail.com> <8764aeq17a.fsf@wigwam.brockman.se> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1170807488 15275 80.91.229.12 (7 Feb 2007 00:18:08 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 7 Feb 2007 00:18:08 +0000 (UTC) Cc: emacs-devel@gnu.org To: Daniel Brockman Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Feb 07 01:18:01 2007 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1HEaVc-0005r7-Tl for ged-emacs-devel@m.gmane.org; Wed, 07 Feb 2007 01:18:01 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HEaVc-00054x-IQ for ged-emacs-devel@m.gmane.org; Tue, 06 Feb 2007 19:18:00 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HEaVR-00054i-Hi for emacs-devel@gnu.org; Tue, 06 Feb 2007 19:17:49 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HEaVO-00053B-MZ for emacs-devel@gnu.org; Tue, 06 Feb 2007 19:17:47 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HEaVO-000538-KK for emacs-devel@gnu.org; Tue, 06 Feb 2007 19:17:46 -0500 Original-Received: from ch-smtp01.sth.basefarm.net ([80.76.149.212]) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.52) id 1HEaVO-0006p4-6F for emacs-devel@gnu.org; Tue, 06 Feb 2007 19:17:46 -0500 Original-Received: from c83-254-145-24.bredband.comhem.se ([83.254.145.24]:59365 helo=[127.0.0.1]) by ch-smtp01.sth.basefarm.net with esmtp (Exim 4.63) (envelope-from ) id 1HEaVM-0007VR-4T; Wed, 07 Feb 2007 01:17:44 +0100 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.9) Gecko/20061207 Thunderbird/1.5.0.9 Mnenhy/0.7.4.666 In-Reply-To: <8764aeq17a.fsf@wigwam.brockman.se> X-Antivirus: avast! (VPS 000711-0, 2007-02-06), Outbound message X-Antivirus-Status: Clean X-Scan-Result: No virus found in message 1HEaVM-0007VR-4T. X-Scan-Signature: ch-smtp01.sth.basefarm.net 1HEaVM-0007VR-4T faa116e1a6eee2f1f469dfb97c63b3df X-detected-kernel: Linux 2.6? (barebone, rare!) 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:66055 Archived-At: Daniel Brockman wrote: > "Lennart Borgman (gmail)" writes: > >> ;;(or (eq value 'fundamental-mode) >> (intern-soft (concat sym-name "-hook")) >> (boundp (intern-soft (concat sym-name "-hook")))) >> ;;) > > This part does not make sense: > > (or (intern-soft (concat sym-name "-hook")) > (boundp (intern-soft (boncat sym-name "-hook")))) > > In general, nothing that looks like this can make sense, > > (or FOO (boundp FOO)) > > because `boundp' will only ever be called if FOO is nil. > Thamnks. Sorry, I just added the "fundamental-mode" line to make it more clear when I posted. I missed to put and "add" around the following two lines. It should be ;;(or (eq value 'fundamental-mode) ;; (and (intern-soft (concat sym-name "-hook")) (boundp (intern-soft (concat sym-name "-hook")))) ;;)) Both the "fundamental-line" and the "and" line must be uncommented to get it working.