From fe14a5445b6c39b40a06bb425958c97d4d7522df Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Fri, 12 Oct 2001 22:31:23 +0000 Subject: [PATCH] (skip_invisible): Don't skip "ellipsisized" text. --- src/indent.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; } -- 2.39.2