diff options
author | Andreas Schwab <schwab@suse.de> | 2006-07-13 11:44:10 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2006-07-13 11:44:10 +0000 |
commit | 60c86a8342777e0c2f12c5dab3a71b8bcfdc33fb (patch) | |
tree | 9493af26affaa970789a347f2a16d449b753c439 /src/syntax.c | |
parent | d40ec4a023ec50eb087323b427644663b054c0f0 (diff) | |
download | emacs-60c86a8342777e0c2f12c5dab3a71b8bcfdc33fb.tar.gz |
(scan_sexps_forward): Use EMACS_INT for out_bytepos and
out_charpos.
Diffstat (limited to 'src/syntax.c')
-rw-r--r-- | src/syntax.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/syntax.c b/src/syntax.c index 4f1bbb2d6b4..9959c17ad47 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -2702,7 +2702,7 @@ scan_sexps_forward (stateptr, from, from_byte, end, targetdepth, int boundary_stop = commentstop == -1; int nofence; int found; - int out_bytepos, out_charpos; + EMACS_INT out_bytepos, out_charpos; int temp; prev_from = from; |