From: Stefan Monnier Date: Sun, 3 Nov 2002 09:36:55 +0000 (+0000) Subject: (adjust_point_for_property): copy/paste error. X-Git-Tag: ttn-vms-21-2-B4~12612 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3a6607a22416905277b0938b722d1a08845e8f7d;p=emacs.git (adjust_point_for_property): copy/paste error. --- diff --git a/src/keyboard.c b/src/keyboard.c index c0afb84c3c4..7e3e4372e51 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -1838,7 +1838,7 @@ adjust_point_for_property (last_pt) beg < PT) && (tmp = Fnext_single_char_property_change (make_number (PT), Qinvisible, Qnil, Qnil), - end = NILP (tmp) ? BEGV : XFASTINT (tmp), + end = NILP (tmp) ? ZV : XFASTINT (tmp), (last_pt <= beg || last_pt >= end))) { SET_PT (PT < last_pt ? beg : end);