[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: sh.exe needed to bootstrap on Windows?
From: |
Thien-Thi Nguyen |
Subject: |
Re: sh.exe needed to bootstrap on Windows? |
Date: |
Tue, 17 Jul 2007 14:51:57 +0200 |
User-agent: |
Gnus/5.11 (Gnus v5.11) Emacs/22.1.50 (gnu/linux) |
() Andreas Schwab <address@hidden>
() 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)
- Re: sh.exe needed to bootstrap on Windows?, (continued)
- Re: sh.exe needed to bootstrap on Windows?, Dan Nicolaescu, 2007/07/16
- Re: sh.exe needed to bootstrap on Windows?, Jason Rumney, 2007/07/17
- Re: sh.exe needed to bootstrap on Windows?, Dan Nicolaescu, 2007/07/17
- Re: sh.exe needed to bootstrap on Windows?, Eli Zaretskii, 2007/07/17
- Re: sh.exe needed to bootstrap on Windows?, Juanma Barranquero, 2007/07/17
- Re: sh.exe needed to bootstrap on Windows?, Andreas Schwab, 2007/07/17
- Re: sh.exe needed to bootstrap on Windows?,
Thien-Thi Nguyen <=
- Re: sh.exe needed to bootstrap on Windows?, David Kastrup, 2007/07/17
- Re: sh.exe needed to bootstrap on Windows?, Eli Zaretskii, 2007/07/17
- Re: sh.exe needed to bootstrap on Windows?, Eli Zaretskii, 2007/07/17
- Re: sh.exe needed to bootstrap on Windows?, Stefan Monnier, 2007/07/17
- Re: sh.exe needed to bootstrap on Windows?, Eli Zaretskii, 2007/07/17
- Re: sh.exe needed to bootstrap on Windows?, Juanma Barranquero, 2007/07/17
Re: sh.exe needed to bootstrap on Windows?, Eli Zaretskii, 2007/07/16