Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
c3f2772b
Commit
c3f2772b
authored
Jan 06, 2001
by
Eli Zaretskii
Browse files
(noninteractive): Don't load generic-sc on MS-DOS
systems without long file-name support.
parent
0dac6924
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletion
+12
-1
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/ediff-vers.el
lisp/ediff-vers.el
+7
-1
No files found.
lisp/ChangeLog
View file @
c3f2772b
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.
...
...
lisp/ediff-vers.el
View file @
c3f2772b
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment