Mercurial > emacs
changeset 39937:a5b6a5d3e531
(skip_invisible): Use new retval of TEXT_PROP_MEANS_INVISIBLE.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Sun, 14 Oct 2001 20:19:10 +0000 |
parents | 586d992fb79f |
children | 2648c00a75fe |
files | src/indent.c |
diffstat | 1 files changed, 1 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/src/indent.c Sun Oct 14 20:17:49 2001 +0000 +++ b/src/indent.c Sun Oct 14 20:19:10 2001 +0000 @@ -270,9 +270,7 @@ prop = Fget_char_property (position, Qinvisible, window); else prop = Fget_char_property (position, Qinvisible, buffer); - if (NILP (window) - ? TEXT_PROP_MEANS_INVISIBLE_NOELLIPSIS (prop) - : TEXT_PROP_MEANS_INVISIBLE (prop)) + if (TEXT_PROP_MEANS_INVISIBLE (prop) > NILP (window)) return *next_boundary_p; return pos; }