From 67964c67c6b3f4601dc787b921425b621a3b23e7 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Sun, 14 Oct 2001 20:19:10 +0000 Subject: [PATCH] (skip_invisible): Use new retval of TEXT_PROP_MEANS_INVISIBLE. --- src/indent.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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; } -- 2.39.2