diff options
author | Karl Heuer <kwzh@gnu.org> | 1996-09-01 21:04:32 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1996-09-01 21:04:32 +0000 |
commit | e3678b64333787df03e203b1ed5a4c2ec76d0272 (patch) | |
tree | 1477eeda61aa36cf198eeb1af76a351bb424464c /src/lisp.h | |
parent | 8c09486ac8aff2efb726ea76a58bcbac030b7bfa (diff) | |
download | emacs-e3678b64333787df03e203b1ed5a4c2ec76d0272.tar.gz |
Removed support for !MULTI_FRAME.
Diffstat (limited to 'src/lisp.h')
-rw-r--r-- | src/lisp.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/lisp.h b/src/lisp.h index c13a1e7a53a..d524f3fb140 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -984,19 +984,8 @@ typedef unsigned char UCHAR; #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)) |