From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: merlyn@stonehenge.com (Randal L. Schwartz) Newsgroups: gmane.emacs.devel Subject: Re: odd change in OSX behavior of toolbar in the past few weeks Date: Wed, 11 Jul 2007 17:30:07 -0700 Message-ID: <86y7hm31m8.fsf@blue.stonehenge.com> References: <86myy6b7n3.fsf@blue.stonehenge.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1184200220 32525 80.91.229.12 (12 Jul 2007 00:30:20 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 12 Jul 2007 00:30:20 +0000 (UTC) Cc: emacs-devel@gnu.org To: rms@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Jul 12 02:30:18 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 1I8mZV-0007Ou-PY for ged-emacs-devel@m.gmane.org; Thu, 12 Jul 2007 02:30:18 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1I8mZV-0004QQ-6l for ged-emacs-devel@m.gmane.org; Wed, 11 Jul 2007 20:30:17 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1I8mZS-0004Pi-76 for emacs-devel@gnu.org; Wed, 11 Jul 2007 20:30:14 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1I8mZQ-0004Nf-Ny for emacs-devel@gnu.org; Wed, 11 Jul 2007 20:30:12 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1I8mZQ-0004NU-Iu for emacs-devel@gnu.org; Wed, 11 Jul 2007 20:30:12 -0400 Original-Received: from blue.stonehenge.com ([209.223.236.162]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1I8mZN-0004Gl-NI; Wed, 11 Jul 2007 20:30:09 -0400 Original-Received: by blue.stonehenge.com (Postfix, from userid 1001) id F24B41DED36; Wed, 11 Jul 2007 17:30:07 -0700 (PDT) x-mayan-date: Long count = 12.19.14.8.10; tzolkin = 3 Oc; haab = 18 Tzec In-Reply-To: (Richard Stallman's message of "Mon, 09 Jul 2007 13:21:32 -0400") User-Agent: Gnus/5.1008 (Gnus v5.10.8) Emacs/21.4 (berkeley-unix) X-detected-kernel: OpenBSD 3.0-3.9 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:74673 Archived-At: >>>>> "Richard" == Richard Stallman writes: Richard> Can you try checking out code from various dates Richard> so as to determine which change causes the problem? By the time I looked again, it was working fine again. It was fixed recently by this patch: diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2123e07..a7cf4d2 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,7 @@ 2007-07-10 Stefan Monnier + * emacs-lisp/cl.el: Load cl-loaddefs.el quietly. + * vc-arch.el (vc-arch-complete): Remove. (vc-arch-revision-completion-table): Use complete-with-action. diff --git a/lisp/emacs-lisp/cl.el b/lisp/emacs-lisp/cl.el index 233df65..f8b178a 100644 --- a/lisp/emacs-lisp/cl.el +++ b/lisp/emacs-lisp/cl.el @@ -628,7 +628,7 @@ If ALIST is non-nil, the new pairs are prepended to it." (fmakunbound 'dolist) (fmakunbound 'dotimes) (fmakunbound 'declare) -(load "cl-loaddefs") +(load "cl-loaddefs" nil 'quiet) ;; This goes here so that cl-macs can find it if it loads right now. (provide 'cl-19) ; usage: (require 'cl-19 "cl") So there was something about the noisy loading of cl-loaddefs that forced the toolbar to be shown. Weird. -- Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095 Perl/Unix/security consulting, Technical writing, Comedy, etc. etc. See PerlTraining.Stonehenge.com for onsite and open-enrollment Perl training!