From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Thien-Thi Nguyen Newsgroups: gmane.emacs.devel Subject: Re: sh.exe needed to bootstrap on Windows? Date: Tue, 17 Jul 2007 14:51:57 +0200 Message-ID: <87y7hfry4y.fsf@ambire.localdomain> References: <469C7621.6000408@gnu.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1184676789 24674 80.91.229.12 (17 Jul 2007 12:53:09 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 17 Jul 2007 12:53:09 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Jul 17 14:53:08 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 1IAmY7-0001aS-3X for ged-emacs-devel@m.gmane.org; Tue, 17 Jul 2007 14:53:07 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IAmY6-0002b8-MF for ged-emacs-devel@m.gmane.org; Tue, 17 Jul 2007 08:53:06 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IAmXn-0002NU-R0 for emacs-devel@gnu.org; Tue, 17 Jul 2007 08:52:47 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IAmXm-0002N0-Df for emacs-devel@gnu.org; Tue, 17 Jul 2007 08:52:47 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IAmXm-0002Mt-66 for emacs-devel@gnu.org; Tue, 17 Jul 2007 08:52:46 -0400 Original-Received: from smtp-out4.libero.it ([212.52.84.46]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IAmXl-0004Kt-Jk for emacs-devel@gnu.org; Tue, 17 Jul 2007 08:52:45 -0400 Original-Received: from localhost (172.31.0.51) by smtp-out4.libero.it (7.3.120) id 4688F35001802571 for emacs-devel@gnu.org; Tue, 17 Jul 2007 14:52:15 +0200 X-Scanned: with antispam and antivirus automated system at libero.it Original-Received: from smtp-out3.libero.it ([172.31.0.39]) by localhost (asav-out10.libero.it [192.168.32.38]) (amavisd-new, port 10024) with ESMTP id FzT49zWhzW2W for ; Tue, 17 Jul 2007 14:52:15 +0200 (CEST) Original-Received: from outrelay08.libero.it (192.168.32.103) by smtp-out3.libero.it (7.3.120) id 4611FDB607C2DDD4 for emacs-devel@gnu.org; Tue, 17 Jul 2007 14:52:15 +0200 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Ao8CAMZYnEaXFSCK/2dsb2JhbAA Original-Received: from ppp-138-32.21-151.libero.it (HELO ambire.localdomain) ([151.21.32.138]) by OutRelay-b08.libero.it with ESMTP; 17 Jul 2007 14:52:14 +0200 Original-Received: from ttn by ambire.localdomain with local (Exim 4.63) (envelope-from ) id 1IAmWz-0002YZ-38 for emacs-devel@gnu.org; Tue, 17 Jul 2007 14:51:57 +0200 In-Reply-To: (Andreas Schwab's message of "Tue\, 17 Jul 2007 13\:45\:45 +0200") User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1.50 (gnu/linux) X-detected-kernel: Linux 2.4-2.6 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:74981 Archived-At: () Andreas Schwab () Tue, 17 Jul 2007 13:45:45 +0200 loaddefs.el is not registered with CVS. i see in the manual: The variable `vc-handled-backends' determines which version control systems VC should handle. The default value is `(RCS CVS SVN SCCS Arch MCVS)', so it contains all six version systems that are currently supported. If you want VC to ignore one or more of these systems, exclude its name from the list. To disable VC entirely, set this variable to `nil'. maybe autoload processing should let-bind vc-handled-backends to nil? thi ____________________________________________________________ diff -c -r1.130 autoload.el *** autoload.el 14 Jul 2007 19:03:22 -0000 1.130 --- autoload.el 17 Jul 2007 12:49:25 -0000 *************** *** 565,570 **** --- 565,572 ---- dirs))) (done ()) (this-time (current-time)) + ;; Avoid confusion when writing. + (vc-handled-backends nil) ;; Files with no autoload cookies or whose autoloads go to other ;; files because of file-local autoload-generated-file settings. (no-autoloads nil)