(noninteractive): Don't load generic-sc on MS-DOS

systems without long file-name support.
This commit is contained in:
Eli Zaretskii 2001-01-06 21:46:48 +00:00
parent 0dac692454
commit c3f2772bfc
2 changed files with 12 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2001-01-06 Eli Zaretskii <eliz@is.elta.co.il>
* ediff-ve.el (noninteractive): Don't load generic-sc on MS-DOS
systems without long file-name support.
2001-01-06 Andrew Innes <andrewi@gnu.org>
* makefile.w32-in (custom-deps): Set EMACSLOADPATH explicitly.

View file

@ -36,7 +36,13 @@
(eval-when-compile
(load "pcl-cvs" 'noerror)
(load "rcs" 'noerror)
(load "generic-sc" 'noerror)
;; On 8+3 MS-DOS filesystems, generic-x.el is loaded
;; instead of (the missing) generic-sc.el. Since the
;; version of Emacs which supports MS-DOS doesn't have
;; generic-sc, we simply avoid loading it.
(or (and (fboundp 'msdos-long-file-names)
(not (msdos-long-file-names)))
(load "generic-sc" 'noerror))
(load "vc" 'noerror)))
;; end pacifier