From 3a6607a22416905277b0938b722d1a08845e8f7d Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Sun, 3 Nov 2002 09:36:55 +0000 Subject: [PATCH] (adjust_point_for_property): copy/paste error. --- src/keyboard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.39.2