# HG changeset patch # User Gerd Moellmann # Date 961530231 0 # Node ID 6863a9ae42d65beafe0790c9a62a0be02270e99f # Parent 10530643ea7fcdea88cb082a09da77c5a321e507 (adjust_point_for_property): Check if display property should be treated as intangible by looking at its value. diff -r 10530643ea7f -r 6863a9ae42d6 src/keyboard.c --- a/src/keyboard.c Tue Jun 20 18:40:08 2000 +0000 +++ b/src/keyboard.c Tue Jun 20 19:43:51 2000 +0000 @@ -1667,6 +1667,7 @@ 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)) {