]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fmake_terminal_frame): Raise an error when called from
authorJason Rumney <jasonr@gnu.org>
Sat, 20 Dec 2008 16:00:39 +0000 (16:00 +0000)
committerJason Rumney <jasonr@gnu.org>
Sat, 20 Dec 2008 16:00:39 +0000 (16:00 +0000)
a graphical frame on Windows.

src/ChangeLog
src/frame.c

index 83d43479df81997e7683a4aa8c0e3d56a1e8300e..bd37f3528fde104a3d989f4ac2bc8d5d1e6e26a8 100644 (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.
index 8af3e4bf35f203a1ae56708e2a8bd3eeaf192207..db8874f52802209e3e08aef09f6687c96b03c729 100644 (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