# HG changeset patch # User Richard M. Stallman # Date 834441618 0 # Node ID e0d50fe661c00bfa7f12d4ed7f32b780f0afebe7 # Parent f95592fcdb1cee53e4fd5fe94e67c7b54c1fa9b9 On MSDOS, don't assume that `make-frame' is only bound under an X emulator; use `x-create-frame' instead. diff -r f95592fcdb1c -r e0d50fe661c0 lisp/loadup.el --- a/lisp/loadup.el Mon Jun 10 21:19:59 1996 +0000 +++ b/lisp/loadup.el Mon Jun 10 21:20:18 1996 +0000 @@ -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))