aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Love2003-09-17 13:53:03 +0000
committerDave Love2003-09-17 13:53:03 +0000
commit2b95772c09e0c06fab7c4c7d66aff93408901d9f (patch)
treed6eb60aadfc0ded80c98b3f53a599e26473c4969 /src
parent72ac5ed65bbdfefeb601952d33a4efc61643117c (diff)
downloademacs-2b95772c09e0c06fab7c4c7d66aff93408901d9f.tar.gz
emacs-2b95772c09e0c06fab7c4c7d66aff93408901d9f.zip
(adjust_point_for_property): Make beg and end
EMACS_INT.
Diffstat (limited to 'src')
-rw-r--r--src/keyboard.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index 449c8a1b453..133333cd959 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -1868,7 +1868,7 @@ adjust_point_for_property (last_pt, modified)
1868 int last_pt; 1868 int last_pt;
1869 int modified; 1869 int modified;
1870{ 1870{
1871 int beg, end; 1871 EMACS_INT beg, end;
1872 Lisp_Object val, overlay, tmp; 1872 Lisp_Object val, overlay, tmp;
1873 int check_composition = 1, check_display = 1, check_invisible = 1; 1873 int check_composition = 1, check_display = 1, check_invisible = 1;
1874 int orig_pt = PT; 1874 int orig_pt = PT;