changeset 23828:bc08f49b275f

(buffer-undo-list) [windows-nt]: Use different relative path.
author Geoff Voelker <voelker@cs.washington.edu>
date Mon, 07 Dec 1998 19:27:14 +0000
parents c42c9078252f
children 422bd4826b2c
files lisp/loadup.el
diffstat 1 files changed, 7 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/loadup.el	Mon Dec 07 19:25:32 1998 +0000
+++ b/lisp/loadup.el	Mon Dec 07 19:27:14 1998 +0000
@@ -226,9 +226,13 @@
   (princ ")))\n" (current-buffer))
   (write-region (point-min) (point-max)
 		(expand-file-name
-		 (if (eq system-type 'ms-dos)
-		     "../lib-src/fns.el"
-		   (format "../lib-src/fns-%s.el" emacs-version))
+		 (cond 
+		  ((eq system-type 'ms-dos)
+		   "../lib-src/fns.el")
+		  ((eq system-type 'windows-nt)
+		   (format "../../../lib-src/fns-%s.el" emacs-version))
+		  (t
+		   (format "../lib-src/fns-%s.el" emacs-version)))
 		 invocation-directory))
   (erase-buffer))
 (setq load-history nil)