]> git.eshelyaron.com Git - emacs.git/commitdiff
(symbol-file): For ms-dos, use fns.el without the
authorEli Zaretskii <eliz@gnu.org>
Thu, 12 Nov 1998 11:44:53 +0000 (11:44 +0000)
committerEli Zaretskii <eliz@gnu.org>
Thu, 12 Nov 1998 11:44:53 +0000 (11:44 +0000)
version string.

lisp/loadhist.el

index 8df66d3bcc97306299d13d1d57257655e8f0a1ac..2e91f24b55f90271d04a8104560b766017bf6fe9 100644 (file)
@@ -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)