Mercurial > emacs
diff lisp/loadhist.el @ 23704:2069e879bec5
(symbol-file): For ms-dos, use fns.el without the
version string.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Thu, 12 Nov 1998 11:44:53 +0000 |
parents | bf72d6351f29 |
children | 49a68c55c3ac |
line wrap: on
line diff
--- a/lisp/loadhist.el Thu Nov 12 11:42:45 1998 +0000 +++ b/lisp/loadhist.el Thu Nov 12 11:44:53 1998 +0000 @@ -42,7 +42,9 @@ (unless load-history-loaded (load (expand-file-name ;; fns-XX.YY.ZZ.el does not work on DOS filesystem. - (convert-standard-filename (format "fns-%s.el" emacs-version)) + (if (eq system-type 'ms-dos) + "fns.el" + (format "fns-%s.el" emacs-version)) exec-directory) ;; The file name fns-%s.el already has a .el extension. nil nil t)