From: Richard M. Stallman Date: Thu, 10 Nov 1994 03:44:29 +0000 (+0000) Subject: (FRAMEP): Use the second definition whenever HAVE_MOUSE. X-Git-Tag: emacs-19.34~5975 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2f24e04e52af3279af6612aa263ed73eb89dc3f6;p=emacs.git (FRAMEP): Use the second definition whenever HAVE_MOUSE. --- diff --git a/src/lisp.h b/src/lisp.h index e418e43d8b2..109e00097bd 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -747,7 +747,7 @@ typedef unsigned char UCHAR; #ifdef MULTI_FRAME #define FRAMEP(x) (XTYPE ((x)) == Lisp_Frame) #else -#ifdef MSDOS +#ifdef HAVE_MOUSE /* We could use this in the !MSDOS case also, but we prefer a compile-time error message in case FRAMEP is used. */ #define FRAMEP(x) (EQ (x, Fselected_frame ()))