diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-06-10 21:20:18 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-06-10 21:20:18 +0000 |
commit | 753a134f1eb1cab987670b526175c45671189031 (patch) | |
tree | 3e4d58ac7ad3c433e438aa5c556b0e11927bc0b2 /lisp/loadup.el | |
parent | 9000684d2ed66bba1d00a607d06f1ed849e7571f (diff) | |
download | emacs-753a134f1eb1cab987670b526175c45671189031.tar.gz |
On MSDOS, don't assume that `make-frame' is only bound under an X
emulator; use `x-create-frame' instead.
Diffstat (limited to 'lisp/loadup.el')
-rw-r--r-- | lisp/loadup.el | 2 |
1 files changed, 1 insertions, 1 deletions
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)) |