diff options
| author | Andreas Schwab | 2006-07-13 11:44:10 +0000 |
|---|---|---|
| committer | Andreas Schwab | 2006-07-13 11:44:10 +0000 |
| commit | 60c86a8342777e0c2f12c5dab3a71b8bcfdc33fb (patch) | |
| tree | 9493af26affaa970789a347f2a16d449b753c439 /src | |
| parent | d40ec4a023ec50eb087323b427644663b054c0f0 (diff) | |
| download | emacs-60c86a8342777e0c2f12c5dab3a71b8bcfdc33fb.tar.gz emacs-60c86a8342777e0c2f12c5dab3a71b8bcfdc33fb.zip | |
(scan_sexps_forward): Use EMACS_INT for out_bytepos and
out_charpos.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/syntax.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 827abe51c57..e3cc69c7487 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2006-07-13 Andreas Schwab <schwab@suse.de> | ||
| 2 | |||
| 3 | * syntax.c (scan_sexps_forward): Use EMACS_INT for out_bytepos and | ||
| 4 | out_charpos. | ||
| 5 | |||
| 1 | 2006-07-13 Kenichi Handa <handa@m17n.org> | 6 | 2006-07-13 Kenichi Handa <handa@m17n.org> |
| 2 | 7 | ||
| 3 | * editfns.c (Fformat): Fix calculation of text property positions | 8 | * editfns.c (Fformat): Fix calculation of text property positions |
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, | |||
| 2702 | int boundary_stop = commentstop == -1; | 2702 | int boundary_stop = commentstop == -1; |
| 2703 | int nofence; | 2703 | int nofence; |
| 2704 | int found; | 2704 | int found; |
| 2705 | int out_bytepos, out_charpos; | 2705 | EMACS_INT out_bytepos, out_charpos; |
| 2706 | int temp; | 2706 | int temp; |
| 2707 | 2707 | ||
| 2708 | prev_from = from; | 2708 | prev_from = from; |