changeset 23703:b42fdebae792

(buffer-undo-list): For ms-dos, use fns.el without the version string.
author Eli Zaretskii <eliz@gnu.org>
date Thu, 12 Nov 1998 11:42:45 +0000
parents 88ea29425911
children 2069e879bec5
files lisp/loadup.el
diffstat 1 files changed, 5 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/loadup.el	Thu Nov 12 02:00:33 1998 +0000
+++ b/lisp/loadup.el	Thu Nov 12 11:42:45 1998 +0000
@@ -225,9 +225,11 @@
       (setq tem (cdr tem))))
   (princ ")))\n" (current-buffer))
   (write-region (point-min) (point-max)
-		(expand-file-name (convert-standard-filename
-				   (format "../lisp/fns-%s.el" emacs-version))
-				   invocation-directory))
+		(expand-file-name
+		 (if (eq system-type 'ms-dos)
+		     "../lisp/fns.el"
+		   (format "../lisp/fns-%s.el" emacs-version))
+		 invocation-directory))
   (erase-buffer))
 (setq load-history nil)
 (set-buffer-modified-p nil)