diff options
| author | Dave Love | 2003-09-17 13:53:03 +0000 |
|---|---|---|
| committer | Dave Love | 2003-09-17 13:53:03 +0000 |
| commit | 2b95772c09e0c06fab7c4c7d66aff93408901d9f (patch) | |
| tree | d6eb60aadfc0ded80c98b3f53a599e26473c4969 /src | |
| parent | 72ac5ed65bbdfefeb601952d33a4efc61643117c (diff) | |
| download | emacs-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.c | 2 |
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; |