comparison src/intervals.h @ 16739:41dc4644dec9

(FRONT_NONSTICKY_P): New macro.
author Richard M. Stallman <rms@gnu.org>
date Fri, 20 Dec 1996 18:15:32 +0000
parents ee40177f6c68
children a609ccd7eefb
comparison
equal deleted inserted replaced
16738:9372cff55355 16739:41dc4644dec9
157 #define END_STICKY_P(i) ((i)->rear_sticky != 0)*/ 157 #define END_STICKY_P(i) ((i)->rear_sticky != 0)*/
158 #define FRONT_STICKY_P(i) \ 158 #define FRONT_STICKY_P(i) \
159 (! NULL_INTERVAL_P (i) && ! NILP (textget ((i)->plist, Qfront_sticky))) 159 (! NULL_INTERVAL_P (i) && ! NILP (textget ((i)->plist, Qfront_sticky)))
160 #define END_NONSTICKY_P(i) \ 160 #define END_NONSTICKY_P(i) \
161 (! NULL_INTERVAL_P (i) && ! NILP (textget ((i)->plist, Qrear_nonsticky))) 161 (! NULL_INTERVAL_P (i) && ! NILP (textget ((i)->plist, Qrear_nonsticky)))
162 #define FRONT_NONSTICKY_P(i) \
163 (! NULL_INTERVAL_P (i) && ! EQ (Qt, textget ((i)->plist, Qfront_sticky)))
162 164
163 165
164 /* If PROP is the `invisible' property of a character, 166 /* If PROP is the `invisible' property of a character,
165 this is 1 if the character should be treated as invisible. */ 167 this is 1 if the character should be treated as invisible. */
166 168