Mercurial > emacs
changeset 15398:e0d50fe661c0
On MSDOS, don't assume that `make-frame' is only bound under an X
emulator; use `x-create-frame' instead.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 10 Jun 1996 21:20:18 +0000 |
parents | f95592fcdb1c |
children | e9ec008793fd |
files | lisp/loadup.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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))