projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f4bc068
)
(handle_composition_prop, check_point_in_composition):
author
Dave Love
<fx@gnu.org>
Wed, 17 Sep 2003 13:52:05 +0000
(13:52 +0000)
committer
Dave Love
<fx@gnu.org>
Wed, 17 Sep 2003 13:52:05 +0000
(13:52 +0000)
Make buffer positions EMACS_INT.
src/xdisp.c
patch
|
blob
|
history
diff --git
a/src/xdisp.c
b/src/xdisp.c
index 762ed45b8a201c2468c2d8815d30bccc969d5926..b329dece25bcde4c3ad08cd9ea2576de43f9e8e6 100644
(file)
--- a/
src/xdisp.c
+++ b/
src/xdisp.c
@@
-3814,7
+3814,7
@@
handle_composition_prop (it)
struct it *it;
{
Lisp_Object prop, string;
-
int
pos, pos_byte, end;
+
EMACS_INT
pos, pos_byte, end;
enum prop_handled handled = HANDLED_NORMALLY;
if (STRINGP (it->string))
@@
-9503,7
+9503,7
@@
check_point_in_composition (prev_buf, prev_pt, buf, pt)
struct buffer *prev_buf, *buf;
int prev_pt, pt;
{
-
int
start, end;
+
EMACS_INT
start, end;
Lisp_Object prop;
Lisp_Object buffer;