1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-06 05:52:32 -08:00

(Fmake_terminal_frame): Raise an error when called from

a graphical frame on Windows.
This commit is contained in:
Jason Rumney 2008-12-20 16:00:39 +00:00
parent 54ea0c877f
commit 99b72cc426
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2008-12-20 Jason Rumney <jasonr@gnu.org>
* frame.c (Fmake_terminal_frame): Raise an error when called from
a graphical frame on Windows.
2008-12-20 Jan Djärv <jan.h.d@swipnet.se>
* frame.c (Fdelete_frame): Set f->menu_bar_vector to Qnil.

View file

@ -684,7 +684,7 @@ affects all frames on the same terminal device. */)
abort ();
#else /* not MSDOS */
#if 0 /* This should work now! */
#ifdef WINDOWSNT /* This should work now! */
if (sf->output_method != output_termcap)
error ("Not using an ASCII terminal now; cannot make a new ASCII frame");
#endif