From: Eli Zaretskii Date: Thu, 12 Nov 1998 11:42:45 +0000 (+0000) Subject: (buffer-undo-list): For ms-dos, use fns.el without the X-Git-Tag: emacs-20.4~1246 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e23dcdffa69b4ffeeb8f7403e49b6aa6ca784067;p=emacs.git (buffer-undo-list): For ms-dos, use fns.el without the version string. --- diff --git a/lisp/loadup.el b/lisp/loadup.el index 1bfcad604bf..254b6ad2c24 100644 --- a/lisp/loadup.el +++ b/lisp/loadup.el @@ -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)