From 3e9ac4b71e3321bda20a5f7d3d90a30eff9ed62c Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Tue, 20 Jun 2000 19:43:51 +0000 Subject: [PATCH] (adjust_point_for_property): Check if display property should be treated as intangible by looking at its value. --- src/keyboard.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/keyboard.c b/src/keyboard.c index e1eb54175ac..e777bdd770b 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -1667,6 +1667,7 @@ adjust_point_for_property (last_pt) if (check_display && PT > BEGV && PT < ZV && get_property_and_range (PT, Qdisplay, &val, &start, &end, Qnil) + && display_prop_intangible_p (val) && start < PT && end > PT && (last_pt <= start || last_pt >= end)) { -- 2.39.2