diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/doc.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 32cbd78dd74..7caf4240561 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2004-03-02 Kenichi Handa <handa@m17n.org> | ||
| 2 | |||
| 3 | * doc.c (Fsubstitute_command_keys): Fix counding bytes. | ||
| 4 | |||
| 1 | 2004-03-02 Kim F. Storm <storm@cua.dk> | 5 | 2004-03-02 Kim F. Storm <storm@cua.dk> |
| 2 | 6 | ||
| 3 | * window.h (struct window): New member overlay_arrow_bitmap. | 7 | * window.h (struct window): New member overlay_arrow_bitmap. |
| @@ -821,7 +821,7 @@ thus, \\=\\=\\=\\= puts \\=\\= into the output, and \\=\\=\\=\\[ puts \\=\\[ int | |||
| 821 | start = strp; | 821 | start = strp; |
| 822 | start_idx = start - SDATA (string); | 822 | start_idx = start - SDATA (string); |
| 823 | 823 | ||
| 824 | while ((strp - SDATA (string) < SCHARS (string)) | 824 | while ((strp - SDATA (string) < SBYTES (string)) |
| 825 | && *strp != '}' && *strp != '>') | 825 | && *strp != '}' && *strp != '>') |
| 826 | strp++; | 826 | strp++; |
| 827 | 827 | ||