From: Richard M. Stallman Date: Mon, 10 Jun 1996 21:20:18 +0000 (+0000) Subject: On MSDOS, don't assume that `make-frame' is only bound under an X X-Git-Tag: emacs-19.34~464 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=753a134f1eb1cab987670b526175c45671189031;p=emacs.git On MSDOS, don't assume that `make-frame' is only bound under an X emulator; use `x-create-frame' instead. --- diff --git a/lisp/loadup.el b/lisp/loadup.el index 789f374378d..f4da8db8854 100644 --- a/lisp/loadup.el +++ b/lisp/loadup.el @@ -179,7 +179,7 @@ (substring name (match-end 0))))) (if (memq system-type '(ms-dos windows-nt)) (setq name (expand-file-name - (if (fboundp 'make-frame) "DOC-X" "DOC") "../etc")) + (if (fboundp 'x-create-frame) "DOC-X" "DOC") "../etc")) (setq name (concat (expand-file-name "../etc/DOC-") name)) (if (file-exists-p name) (delete-file name))