# HG changeset patch # User Richard M. Stallman # Date 730977206 0 # Node ID 64a07c3362f17c7cd49f381c7184edf35afdb29b # Parent 2c37a16ab05e5287d9c9f200ae5c9958c4243d44 Don't include dispextern.h more than once. (INTERVAL_VISIBLE_P): NILP test was backwards. diff -r 2c37a16ab05e -r 64a07c3362f1 src/intervals.h --- a/src/intervals.h Mon Mar 01 09:02:07 1993 +0000 +++ b/src/intervals.h Mon Mar 01 09:13:26 1993 +0000 @@ -18,7 +18,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifdef USE_TEXT_PROPERTIES +#ifndef NORMAL_FACE #include "dispextern.h" +#endif #define NULL_INTERVAL 0 #define INTERVAL_DEFAULT NULL_INTERVAL @@ -135,7 +137,7 @@ /* Is this interval visible? Replace later with cache access */ #define INTERVAL_VISIBLE_P(i) \ - (! NULL_INTERVAL_P (i) && ! NILP (Fmemq (Qinvisible, (i)->plist))) + (! NULL_INTERVAL_P (i) && NILP (Fmemq (Qinvisible, (i)->plist))) /* Is this interval writable? Replace later with cache access */ #define INTERVAL_WRITABLE_P(i) \