[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/src/frame.c,v
From: |
Dan Nicolaescu |
Subject: |
[Emacs-diffs] Changes to emacs/src/frame.c,v |
Date: |
Sun, 27 Jul 2008 18:25:08 +0000 |
CVSROOT: /cvsroot/emacs
Module name: emacs
Changes by: Dan Nicolaescu <dann> 08/07/27 18:24:49
Index: src/frame.c
===================================================================
RCS file: /cvsroot/emacs/emacs/src/frame.c,v
retrieving revision 1.385
retrieving revision 1.386
diff -u -b -r1.385 -r1.386
--- src/frame.c 20 Jul 2008 00:47:28 -0000 1.385
+++ src/frame.c 27 Jul 2008 18:24:41 -0000 1.386
@@ -29,9 +29,6 @@
#ifdef WINDOWSNT
#include "w32term.h"
#endif
-#ifdef MAC_OS
-#include "macterm.h"
-#endif
#ifdef HAVE_NS
#include "nsterm.h"
#endif
@@ -206,7 +203,6 @@
Value is t for a termcap frame (a character-only terminal),
`x' for an Emacs frame that is really an X window,
`w32' for an Emacs frame that is a window on MS-Windows display,
-`mac' for an Emacs frame on a Macintosh Carbon display,
`ns' for an Emacs frame on a GNUstep or Macintosh Cocoa display,
`pc' for a direct-write MS-DOS frame.
See also `frame-live-p'. */)
@@ -702,17 +698,10 @@
abort ();
#else /* not MSDOS */
-#if 0
- /* This can happen for multi-tty when using both terminal frames and
- Carbon frames. */
- if (sf->output_method != output_mac)
- error ("Not running on a Macintosh screen; cannot make a new Macintosh
frame");
-#else
#if 0 /* This should work now! */
if (sf->output_method != output_termcap)
error ("Not using an ASCII terminal now; cannot make a new ASCII frame");
#endif
-#endif
#endif /* not MSDOS */
{
@@ -1470,10 +1459,6 @@
if (FRAME_X_P (f))
x_clear_frame_selections (f);
#endif
-#ifdef MAC_OS
- if (FRAME_MAC_P (f))
- x_clear_frame_selections (f);
-#endif
/* Free glyphs.
This function must be called before the window tree of the
@@ -4500,7 +4485,7 @@
DEFVAR_LISP ("default-frame-scroll-bars", &Vdefault_frame_scroll_bars,
doc: /* Default position of scroll bars on this window-system.
*/);
#ifdef HAVE_WINDOW_SYSTEM
-#if defined(HAVE_NTGUI) || defined(MAC_OS) || defined(NS_IMPL_COCOA)
+#if defined(HAVE_NTGUI) || defined(NS_IMPL_COCOA)
/* MS-Windows and Mac OS X have scroll bars on the right by default. */
Vdefault_frame_scroll_bars = Qright;
#else
@@ -4567,7 +4552,7 @@
handles focus, since there is no way in general for Emacs to find out
automatically. */);
#ifdef HAVE_WINDOW_SYSTEM
-#if defined(HAVE_NTGUI) || defined(MAC_OS) || defined(HAVE_NS)
+#if defined(HAVE_NTGUI) || defined(HAVE_NS)
focus_follows_mouse = 0;
#else
focus_follows_mouse = 1;
- [Emacs-diffs] Changes to emacs/src/frame.c,v, Juanma Barranquero, 2008/07/01
- [Emacs-diffs] Changes to emacs/src/frame.c,v, Chong Yidong, 2008/07/07
- [Emacs-diffs] Changes to emacs/src/frame.c,v, Adrian Robert, 2008/07/15
- [Emacs-diffs] Changes to emacs/src/frame.c,v, Stefan Monnier, 2008/07/16
- [Emacs-diffs] Changes to emacs/src/frame.c,v, Adrian Robert, 2008/07/16
- [Emacs-diffs] Changes to emacs/src/frame.c,v, Adrian Robert, 2008/07/17
- [Emacs-diffs] Changes to emacs/src/frame.c,v, Adrian Robert, 2008/07/19
- [Emacs-diffs] Changes to emacs/src/frame.c,v,
Dan Nicolaescu <=
- [Emacs-diffs] Changes to emacs/src/frame.c,v, Dan Nicolaescu, 2008/07/30