diff options
| author | Eli Zaretskii | 2010-09-25 08:31:15 -0400 |
|---|---|---|
| committer | Eli Zaretskii | 2010-09-25 08:31:15 -0400 |
| commit | f877c546db4d53d4076715323bd151ab6c3347a5 (patch) | |
| tree | eeadbbe340b082d517dacc33290e93f756069d7c /src/ChangeLog | |
| parent | 40b1a3a937512ff35884df2e8e19c3feed9f2688 (diff) | |
| download | emacs-f877c546db4d53d4076715323bd151ab6c3347a5.tar.gz emacs-f877c546db4d53d4076715323bd151ab6c3347a5.zip | |
Fix int/EMACS_INT use in process.c and term.c.
term.c (fast_find_position, term_mouse_highlight): Use EMACS_INT
for buffer positions.
process.c (read_process_output, send_process)
(Fprocess_send_region, status_notify): Use EMACS_INT for buffer
and string positions and size.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index cbdc3706076..08e0adb7999 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,12 @@ | |||
| 1 | 2010-09-25 Eli Zaretskii <eliz@gnu.org> | 1 | 2010-09-25 Eli Zaretskii <eliz@gnu.org> |
| 2 | 2 | ||
| 3 | * term.c (fast_find_position, term_mouse_highlight): Use EMACS_INT | ||
| 4 | for buffer positions. | ||
| 5 | |||
| 6 | * process.c (read_process_output, send_process) | ||
| 7 | (Fprocess_send_region, status_notify): Use EMACS_INT for buffer | ||
| 8 | and string positions and size. | ||
| 9 | |||
| 3 | * print.c (print_object, print_string, strout): Use EMACS_INT for | 10 | * print.c (print_object, print_string, strout): Use EMACS_INT for |
| 4 | string indices. | 11 | string indices. |
| 5 | 12 | ||