Mercurial > emacs
diff src/lisp.h @ 16051:ccf489f8596e
Removed support for !MULTI_FRAME.
| author | Karl Heuer <kwzh@gnu.org> |
|---|---|
| date | Sun, 01 Sep 1996 21:04:32 +0000 |
| parents | 28ca1b95a4e5 |
| children | 36566aa94b49 |
line wrap: on
line diff
--- a/src/lisp.h Sun Sep 01 20:52:25 1996 +0000 +++ b/src/lisp.h Sun Sep 01 21:04:32 1996 +0000 @@ -984,19 +984,8 @@ #define GC_CHAR_TABLE_P(x) GC_PSEUDOVECTORP (x, PVEC_CHAR_TABLE) #define BOOL_VECTOR_P(x) PSEUDOVECTORP (x, PVEC_BOOL_VECTOR) #define GC_BOOL_VECTOR_P(x) GC_PSEUDOVECTORP (x, PVEC_BOOL_VECTOR) - -#ifdef MULTI_FRAME #define FRAMEP(x) PSEUDOVECTORP (x, PVEC_FRAME) #define GC_FRAMEP(x) GC_PSEUDOVECTORP (x, PVEC_FRAME) -#else -#ifdef HAVE_MOUSE -/* We could use this in the !HAVE_MOUSE case also, but we prefer a compile-time - error message in case FRAMEP is used. */ -#define FRAMEP(x) (EQ (x, Fselected_frame ())) -#define GC_FRAMEP(x) (GC_EQ (x, Fselected_frame ())) -#endif -#endif - #define EQ(x, y) (XFASTINT (x) == XFASTINT (y)) #define GC_EQ(x, y) (XGCTYPE (x) == XGCTYPE (y) && XPNTR (x) == XPNTR (y))
