From: Eli Zaretskii Date: Thu, 12 Nov 1998 11:44:53 +0000 (+0000) Subject: (symbol-file): For ms-dos, use fns.el without the X-Git-Tag: emacs-20.4~1245 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3025dc8868560992318079416a1d9a7831da541f;p=emacs.git (symbol-file): For ms-dos, use fns.el without the version string. --- diff --git a/lisp/loadhist.el b/lisp/loadhist.el index 8df66d3bcc9..2e91f24b55f 100644 --- a/lisp/loadhist.el +++ b/lisp/loadhist.el @@ -42,7 +42,9 @@ This is a file name, or nil if the source was a buffer with no associated file." (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)