From: Gerd Moellmann Date: Tue, 20 Jun 2000 19:43:51 +0000 (+0000) Subject: (adjust_point_for_property): Check if display X-Git-Tag: emacs-pretest-21.0.90~3172 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3e9ac4b71e3321bda20a5f7d3d90a30eff9ed62c;p=emacs.git (adjust_point_for_property): Check if display property should be treated as intangible by looking at its value. --- 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)) {