From 3025dc8868560992318079416a1d9a7831da541f Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Thu, 12 Nov 1998 11:44:53 +0000 Subject: [PATCH] (symbol-file): For ms-dos, use fns.el without the version string. --- lisp/loadhist.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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) -- 2.39.2