From: Stefan Monnier Date: Sun, 14 Oct 2001 20:19:10 +0000 (+0000) Subject: (skip_invisible): Use new retval of TEXT_PROP_MEANS_INVISIBLE. X-Git-Tag: ttn-vms-21-2-B4~19437 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=67964c67c6b3f4601dc787b921425b621a3b23e7;p=emacs.git (skip_invisible): Use new retval of TEXT_PROP_MEANS_INVISIBLE. --- diff --git a/src/indent.c b/src/indent.c index c843ba27536..d8ede2ad0e8 100644 --- a/src/indent.c +++ b/src/indent.c @@ -270,9 +270,7 @@ skip_invisible (pos, next_boundary_p, to, window) 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; }