changeset 39863:345caf35c534

(skip_invisible): Don't skip "ellipsisized" text.
author Stefan Monnier <monnier@iro.umontreal.ca>
date Fri, 12 Oct 2001 22:31:23 +0000
parents da336e9d1ab5
children 71f93e410115
files src/indent.c
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/indent.c	Fri Oct 12 22:27:03 2001 +0000
+++ b/src/indent.c	Fri Oct 12 22:31:23 2001 +0000
@@ -270,7 +270,9 @@
     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;
 }