diff options
| author | Richard M. Stallman | 1996-12-20 18:15:32 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-12-20 18:15:32 +0000 |
| commit | 97f7b3b252f6aee554e704218c3494d89797a04c (patch) | |
| tree | ccde5c9c35015979cbeaaaa7fb0b11addb0f6a78 /src | |
| parent | 9cbab4ff0727ca1d9443ad55c3626445d194ab96 (diff) | |
| download | emacs-97f7b3b252f6aee554e704218c3494d89797a04c.tar.gz emacs-97f7b3b252f6aee554e704218c3494d89797a04c.zip | |
(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. */ | |||
| 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, |