From 97f7b3b252f6aee554e704218c3494d89797a04c Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 20 Dec 1996 18:15:32 +0000 Subject: [PATCH] (FRONT_NONSTICKY_P): New macro. --- src/intervals.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/intervals.h b/src/intervals.h index 9b778c1c24d..8ad333e2a67 100644 --- a/src/intervals.h +++ b/src/intervals.h @@ -159,6 +159,8 @@ Boston, MA 02111-1307, USA. */ (! NULL_INTERVAL_P (i) && ! NILP (textget ((i)->plist, Qfront_sticky))) #define END_NONSTICKY_P(i) \ (! NULL_INTERVAL_P (i) && ! NILP (textget ((i)->plist, Qrear_nonsticky))) +#define FRONT_NONSTICKY_P(i) \ + (! NULL_INTERVAL_P (i) && ! EQ (Qt, textget ((i)->plist, Qfront_sticky))) /* If PROP is the `invisible' property of a character, -- 2.39.5