1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-22 18:35:09 +00:00

* textprop.c (text_property_stickiness): doc fix.

This commit is contained in:
Chong Yidong 2006-06-28 00:02:57 +00:00
parent df8ffa055d
commit 506d2f9a54

View File

@ -1787,8 +1787,12 @@ text_property_stickiness (prop, pos, buffer)
/* PROP is rear-non-sticky. */
is_rear_sticky = 0;
}
else
return 0;
/* Consider following character. */
/* This signals an arg-out-of-range error if pos is outside the
buffer's accessible range. */
front_sticky = Fget_text_property (pos, Qfront_sticky, buffer);
if (EQ (front_sticky, Qt)