]> code.delx.au - gnu-emacs/commitdiff
(buffer-undo-list) [windows-nt]: Use different relative path.
authorGeoff Voelker <voelker@cs.washington.edu>
Mon, 7 Dec 1998 19:27:14 +0000 (19:27 +0000)
committerGeoff Voelker <voelker@cs.washington.edu>
Mon, 7 Dec 1998 19:27:14 +0000 (19:27 +0000)
lisp/loadup.el

index 1f42285d45101bc11952a8673b96ec62d3679493..dbc8966d08cb0fd81e27cc78781a1083d29ba633 100644 (file)
   (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)