aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1994-11-10 19:51:28 +0000
committerKarl Heuer1994-11-10 19:51:28 +0000
commite9d167a70d87329d8f296d5b2348693607237605 (patch)
tree188d7e8ccf618c027ca829a7bfb2c1d438d41f68 /src
parentdfb756b7d35781ef6a3079d7e9f224d5437aa229 (diff)
downloademacs-e9d167a70d87329d8f296d5b2348693607237605.tar.gz
emacs-e9d167a70d87329d8f296d5b2348693607237605.zip
Fix comment associated with previous change.
Diffstat (limited to 'src')
-rw-r--r--src/lisp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h
index 109e00097bd..23410ba2933 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -748,7 +748,7 @@ typedef unsigned char UCHAR;
748#define FRAMEP(x) (XTYPE ((x)) == Lisp_Frame) 748#define FRAMEP(x) (XTYPE ((x)) == Lisp_Frame)
749#else 749#else
750#ifdef HAVE_MOUSE 750#ifdef HAVE_MOUSE
751/* We could use this in the !MSDOS case also, but we prefer a compile-time 751/* We could use this in the !HAVE_MOUSE case also, but we prefer a compile-time
752 error message in case FRAMEP is used. */ 752 error message in case FRAMEP is used. */
753#define FRAMEP(x) (EQ (x, Fselected_frame ())) 753#define FRAMEP(x) (EQ (x, Fselected_frame ()))
754#endif 754#endif