From: Richard M. Stallman Date: Fri, 20 Dec 1996 18:15:32 +0000 (+0000) Subject: (FRONT_NONSTICKY_P): New macro. X-Git-Url: https://git.hcoop.net/bpt/emacs.git/commitdiff_plain/97f7b3b252f6aee554e704218c3494d89797a04c (FRONT_NONSTICKY_P): New macro. --- diff --git a/src/intervals.h b/src/intervals.h index 9b778c1c24..8ad333e2a6 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,