diff options
author | Gerd Moellmann <gerd@gnu.org> | 2000-06-20 19:43:51 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2000-06-20 19:43:51 +0000 |
commit | 3e9ac4b71e3321bda20a5f7d3d90a30eff9ed62c (patch) | |
tree | b60b9a67151b98b748ec990fd2bf2a0676cb1fe8 | |
parent | 5700d2cc1262e41a9c7f12928b97cffa6541c089 (diff) | |
download | emacs-3e9ac4b71e3321bda20a5f7d3d90a30eff9ed62c.tar.gz |
(adjust_point_for_property): Check if display
property should be treated as intangible by looking at its
value.
-rw-r--r-- | src/keyboard.c | 1 |
1 files changed, 1 insertions, 0 deletions
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)) { |