diff options
author | Gerd Moellmann <gerd@gnu.org> | 1999-11-11 11:45:06 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 1999-11-11 11:45:06 +0000 |
commit | 339ee9797d7d80d6b934e6a335c57d39303bbdcc (patch) | |
tree | 4ff4b35d61aa3f78d65f7de698c2a54a4cdb4508 /src/indent.c | |
parent | 35a5514b96c8ae655e2a6995c2f0ff2a07de65ab (diff) | |
download | emacs-339ee9797d7d80d6b934e6a335c57d39303bbdcc.tar.gz |
Remove USE_TEXT_PROPERTIES.
Diffstat (limited to 'src/indent.c')
-rw-r--r-- | src/indent.c | 10 |
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)); |