summaryrefslogtreecommitdiff
path: root/src/indent.c
diff options
context:
space:
mode:
authorGerd Moellmann <gerd@gnu.org>1999-11-11 11:45:06 +0000
committerGerd Moellmann <gerd@gnu.org>1999-11-11 11:45:06 +0000
commit339ee9797d7d80d6b934e6a335c57d39303bbdcc (patch)
tree4ff4b35d61aa3f78d65f7de698c2a54a4cdb4508 /src/indent.c
parent35a5514b96c8ae655e2a6995c2f0ff2a07de65ab (diff)
downloademacs-339ee9797d7d80d6b934e6a335c57d39303bbdcc.tar.gz
Remove USE_TEXT_PROPERTIES.
Diffstat (limited to 'src/indent.c')
-rw-r--r--src/indent.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/indent.c b/src/indent.c
index 54967684441..af5b689b5b5 100644
--- a/src/indent.c
+++ b/src/indent.c
@@ -1635,14 +1635,11 @@ vmotion (from, vtarget, w)
&& indented_beyond_p (XFASTINT (prevline),
CHAR_TO_BYTE (XFASTINT (prevline)),
selective))
-#ifdef USE_TEXT_PROPERTIES
/* watch out for newlines with `invisible' property */
|| (propval = Fget_char_property (prevline,
Qinvisible,
text_prop_object),
- TEXT_PROP_MEANS_INVISIBLE (propval))
-#endif
- ))
+ TEXT_PROP_MEANS_INVISIBLE (propval))))
XSETFASTINT (prevline,
find_next_newline_no_quit (XFASTINT (prevline) - 1,
-1));
@@ -1698,13 +1695,10 @@ vmotion (from, vtarget, w)
&& indented_beyond_p (XFASTINT (prevline),
CHAR_TO_BYTE (XFASTINT (prevline)),
selective))
-#ifdef USE_TEXT_PROPERTIES
/* watch out for newlines with `invisible' property */
|| (propval = Fget_char_property (prevline, Qinvisible,
text_prop_object),
- TEXT_PROP_MEANS_INVISIBLE (propval))
-#endif
- ))
+ TEXT_PROP_MEANS_INVISIBLE (propval))))
XSETFASTINT (prevline,
find_next_newline_no_quit (XFASTINT (prevline) - 1,
-1));