aboutsummaryrefslogtreecommitdiffstats
path: root/src/lisp.h
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1994-11-10 03:44:29 +0000
committerRichard M. Stallman <[email protected]>1994-11-10 03:44:29 +0000
commit2f24e04e52af3279af6612aa263ed73eb89dc3f6 (patch)
tree11b784b26e48dfad0fbde721f7e52c559f186b2a /src/lisp.h
parenta9b44faf45a031268e32ba5ad698c13e89ac0cfb (diff)
(FRAMEP): Use the second definition whenever HAVE_MOUSE.
Diffstat (limited to 'src/lisp.h')
-rw-r--r--src/lisp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h
index e418e43d8b..109e00097b 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 ()))