aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2000-06-20 19:43:51 +0000
committerGerd Moellmann2000-06-20 19:43:51 +0000
commit3e9ac4b71e3321bda20a5f7d3d90a30eff9ed62c (patch)
treeb60b9a67151b98b748ec990fd2bf2a0676cb1fe8 /src
parent5700d2cc1262e41a9c7f12928b97cffa6541c089 (diff)
downloademacs-3e9ac4b71e3321bda20a5f7d3d90a30eff9ed62c.tar.gz
emacs-3e9ac4b71e3321bda20a5f7d3d90a30eff9ed62c.zip
(adjust_point_for_property): Check if display
property should be treated as intangible by looking at its value.
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.c1
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)
1667 if (check_display 1667 if (check_display
1668 && PT > BEGV && PT < ZV 1668 && PT > BEGV && PT < ZV
1669 && get_property_and_range (PT, Qdisplay, &val, &start, &end, Qnil) 1669 && get_property_and_range (PT, Qdisplay, &val, &start, &end, Qnil)
1670 && display_prop_intangible_p (val)
1670 && start < PT && end > PT 1671 && start < PT && end > PT
1671 && (last_pt <= start || last_pt >= end)) 1672 && (last_pt <= start || last_pt >= end))
1672 { 1673 {