(text_property_stickiness): Fix Lisp_Object used as boolean.

This commit is contained in:
Stefan Monnier 2001-10-25 04:20:08 +00:00
parent 2c9e190074
commit e1010ebe16
2 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,7 @@
2001-10-25 Stefan Monnier <monnier@cs.yale.edu>
* editfns.c (text_property_stickiness): Fix Lisp_Object used as boolean.
2001-10-25 Miles Bader <miles@gnu.org>
* xfns.c (png_load): Make sure SPECIFIED_BG is a string.

View file

@ -364,9 +364,9 @@ text_property_stickiness (prop, pos)
prev_pos = make_number (XINT (pos) - 1);
rear_non_sticky = Fget_text_property (prev_pos, Qrear_nonsticky, Qnil);
if (CONSP (rear_non_sticky)
? Fmemq (prop, rear_non_sticky)
: !NILP (rear_non_sticky))
if (!NILP (CONSP (rear_non_sticky)
? Fmemq (prop, rear_non_sticky)
: rear_non_sticky))
/* PROP is rear-non-sticky. */
is_rear_sticky = 0;
}