From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: David Reitter Newsgroups: gmane.emacs.devel Subject: Verbosity patch for custom-load-symbol Date: Fri, 21 Apr 2006 15:17:10 +0100 Message-ID: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 (Apple Message framework v749.3) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Content-Transfer-Encoding: quoted-printable X-Trace: sea.gmane.org 1145629069 22588 80.91.229.2 (21 Apr 2006 14:17:49 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 21 Apr 2006 14:17:49 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Apr 21 16:17:46 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 1FWwRp-0006Fk-Pu for ged-emacs-devel@m.gmane.org; Fri, 21 Apr 2006 16:17:26 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FWwRo-0006pY-Sg for ged-emacs-devel@m.gmane.org; Fri, 21 Apr 2006 10:17:24 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FWwRc-0006pT-Fv for emacs-devel@gnu.org; Fri, 21 Apr 2006 10:17:12 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FWwRa-0006pH-Dw for emacs-devel@gnu.org; Fri, 21 Apr 2006 10:17:11 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FWwRa-0006pE-8m for emacs-devel@gnu.org; Fri, 21 Apr 2006 10:17:10 -0400 Original-Received: from [212.227.126.186] (helo=moutng.kundenserver.de) by monty-python.gnu.org with esmtp (Exim 4.52) id 1FWwT7-0002iE-MR for emacs-devel@gnu.org; Fri, 21 Apr 2006 10:18:47 -0400 Original-Received: from [129.215.174.81] (helo=[129.215.174.81]) by mrelayeu.kundenserver.de (node=mrelayeu2) with ESMTP (Nemesis), id 0MKwtQ-1FWwRT1Tot-0004s4; Fri, 21 Apr 2006 16:17:03 +0200 Original-To: Emacs-Devel ' X-Mailer: Apple Mail (2.749.3) X-Provags-ID: kundenserver.de abuse@kundenserver.de login:f3c9a04d49beab9fcce37ffcb55ebfb9 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:53191 Archived-At: Here is a little patch for custom.el which prevents it from =20 displaying unnecessary messages that can be confusing at times (e.g. =20 "loading battery" when a user selects "Save Options"). *** custom.el 20 Apr 2006 14:28:31 +0100 1.126 --- custom.el 21 Apr 2006 15:12:09 +0100=09 *************** *** 608,614 **** ;; We are still loading it when we call this, ;; and it is not in load-history yet. ((equal load "cus-edit")) ! (t (condition-case nil (load load) (error nil)))))))) =0C (defvar custom-local-buffer nil "Non-nil, in a Customization buffer, means customize a specific =20 buffer. --- 608,614 ---- ;; We are still loading it when we call this, ;; and it is not in load-history yet. ((equal load "cus-edit")) ! (t (condition-case nil (load load nil 'quiet) (error =20 nil)))))))) =0C (defvar custom-local-buffer nil "Non-nil, in a Customization buffer, means customize a specific =20 buffer.