From: Stefan Monnier Date: Fri, 12 Oct 2001 22:31:23 +0000 (+0000) Subject: (skip_invisible): Don't skip "ellipsisized" text. X-Git-Tag: ttn-vms-21-2-B4~19497 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fe14a5445b6c39b40a06bb425958c97d4d7522df;p=emacs.git (skip_invisible): Don't skip "ellipsisized" text. --- diff --git a/src/indent.c b/src/indent.c index 04768e37f2a..f2d5eb03675 100644 --- a/src/indent.c +++ b/src/indent.c @@ -270,7 +270,9 @@ skip_invisible (pos, next_boundary_p, to, window) prop = Fget_char_property (position, Qinvisible, window); else prop = Fget_char_property (position, Qinvisible, buffer); - if (TEXT_PROP_MEANS_INVISIBLE (prop)) + if (NILP (window) + ? TEXT_PROP_MEANS_INVISIBLE_NOELLIPSIS (prop) + : TEXT_PROP_MEANS_INVISIBLE (prop)) return *next_boundary_p; return pos; }