diff src/indent.c @ 2506:8c96bdabcaf9

[xemacs-hg @ 2005-01-26 05:11:01 by ben] implement next-single-char-property-change and friends extents.c, extents.h, indent.c, syntax.c: Implement next/previous-single-char-property-change and make next/previous-single-property-change work like in FSF.
author ben
date Wed, 26 Jan 2005 05:11:12 +0000
parents fffe735e63ee
children facf3239ba30
line wrap: on
line diff
--- a/src/indent.c	Wed Jan 26 04:56:18 2005 +0000
+++ b/src/indent.c	Wed Jan 26 05:11:12 2005 +0000
@@ -71,8 +71,8 @@
   Lisp_Object value;
 
   buffer = wrap_buffer (buf);
-  value = Fprevious_single_property_change (make_int (pos), Qinvisible,
-					    buffer, Qnil);
+  value = Fprevious_single_char_property_change (make_int (pos), Qinvisible,
+						 buffer, Qnil);
   if (NILP (value))
     return 0; /* no visible position found */
   else