diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-12-20 18:15:32 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-12-20 18:15:32 +0000 |
commit | 97f7b3b252f6aee554e704218c3494d89797a04c (patch) | |
tree | ccde5c9c35015979cbeaaaa7fb0b11addb0f6a78 /src | |
parent | 9cbab4ff0727ca1d9443ad55c3626445d194ab96 (diff) | |
download | emacs-97f7b3b252f6aee554e704218c3494d89797a04c.tar.gz |
(FRONT_NONSTICKY_P): New macro.
Diffstat (limited to 'src')
-rw-r--r-- | src/intervals.h | 2 |
1 files changed, 2 insertions, 0 deletions
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, |