aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/syntax.c2
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 @@
12006-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
12006-07-13 Kenichi Handa <handa@m17n.org> 62006-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;