diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2001-10-14 20:23:38 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2001-10-14 20:23:38 +0000 |
commit | 99776d43e2bca8f64487870c9fb0010ebc08be11 (patch) | |
tree | 14d0405ca5b9bfbb52dfe81124b10155d685aa8e /src/intervals.h | |
parent | 8580a4e3e0b00cdda72314e7c44cc7f321c024b4 (diff) | |
download | emacs-99776d43e2bca8f64487870c9fb0010ebc08be11.tar.gz |
(TEXT_PROP_MEANS_INVISIBLE_WITH_ELLIPSIS)
(TEXT_PROP_MEANS_INVISIBLE_NOELLIPSIS): Remove.
Diffstat (limited to 'src/intervals.h')
-rw-r--r-- | src/intervals.h | 19 |
1 files changed, 2 insertions, 17 deletions
diff --git a/src/intervals.h b/src/intervals.h index 13347f4e6ea..fc1ceb2a8b8 100644 --- a/src/intervals.h +++ b/src/intervals.h @@ -195,29 +195,14 @@ Boston, MA 02111-1307, USA. */ /* If PROP is the `invisible' property of a character, - this is 1 if the character should be treated as invisible. */ + this is 1 if the character should be treated as invisible, + and 2 if it is invisible but with an ellipsis. */ #define TEXT_PROP_MEANS_INVISIBLE(prop) \ (EQ (current_buffer->invisibility_spec, Qt) \ ? !NILP (prop) \ : invisible_p (prop, current_buffer->invisibility_spec)) -/* If PROP is the `invisible' property of a character, - this is 1 if the character should be treated as invisible - and should have an ellipsis. */ - -#define TEXT_PROP_MEANS_INVISIBLE_WITH_ELLIPSIS(prop) \ - (EQ (current_buffer->invisibility_spec, Qt) \ - ? 0 \ - : 1 == invisible_p (prop, current_buffer->invisibility_spec)) - -/* As above but for "completely" invisible (no ellipsis). */ - -#define TEXT_PROP_MEANS_INVISIBLE_NOELLIPSIS(prop) \ - (EQ (current_buffer->invisibility_spec, Qt) \ - ? !NILP (prop) \ - : 2 == invisible_p (prop, current_buffer->invisibility_spec)) - /* Declared in alloc.c */ extern INTERVAL make_interval P_ ((void)); |