aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2013-07-10 19:17:47 -0700
committerPaul Eggert2013-07-10 19:17:47 -0700
commit653d4f43a7280d8fb84173be37b0c4c518cf7a88 (patch)
treed6d744fca51f03d46fabc65a85e3f1bc84f3f23d /src/ChangeLog
parentd77974bfcacb720419e6fcbe3d6f5c37c5a790d6 (diff)
downloademacs-653d4f43a7280d8fb84173be37b0c4c518cf7a88.tar.gz
emacs-653d4f43a7280d8fb84173be37b0c4c518cf7a88.zip
* sysdep.c, term.c, termcap.c, terminal.c: Integer-related minor fixes.
* sysdep.c (emacs_get_tty): Return void, since nobody uses the value. (emacs_set_tty): Now static. * sysdep.c (emacs_set_tty, tabs_safe_p, emacs_close): * term.c (tty_capable_p, tty_default_color_capabilities) (get_tty_terminal, term_mouse_movement) (handle_one_term_event, init_tty, maybe_fatal): * termcap.c (tgetst1, struct termcap_buffer, valid_filename_p) (tgetent, scan_file, name_match, compare_contin): * terminal.c (get_terminal): Use bool for boolean. * sysdep.c (init_system_name): Don't overflow stack on huge hostname. Prefer char to unsigned char if either will do. * term.c (OUTPUT, turn_on_face): Omit unnecessary casts to int. (tty_write_glyphs): Prefer int to unsigned. (produce_glyphless_glyph): Remove 2nd (unused) int arg. All callers changed. * termcap.c (tprint, main) [TEST]: Remove non-working test.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 1231c1adc14..cd109c17f18 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,24 @@
12013-07-11 Paul Eggert <eggert@cs.ucla.edu>
2
3 * sysdep.c, term.c, termcap.c, terminal.c: Integer-related minor fixes.
4 * sysdep.c (emacs_get_tty): Return void, since nobody uses the value.
5 (emacs_set_tty): Now static.
6 * sysdep.c (emacs_set_tty, tabs_safe_p, emacs_close):
7 * term.c (tty_capable_p, tty_default_color_capabilities)
8 (get_tty_terminal, term_mouse_movement)
9 (handle_one_term_event, init_tty, maybe_fatal):
10 * termcap.c (tgetst1, struct termcap_buffer, valid_filename_p)
11 (tgetent, scan_file, name_match, compare_contin):
12 * terminal.c (get_terminal):
13 Use bool for boolean.
14 * sysdep.c (init_system_name): Don't overflow stack on huge hostname.
15 Prefer char to unsigned char if either will do.
16 * term.c (OUTPUT, turn_on_face): Omit unnecessary casts to int.
17 (tty_write_glyphs): Prefer int to unsigned.
18 (produce_glyphless_glyph): Remove 2nd (unused) int arg.
19 All callers changed.
20 * termcap.c (tprint, main) [TEST]: Remove non-working test.
21
12013-07-10 Paul Eggert <eggert@cs.ucla.edu> 222013-07-10 Paul Eggert <eggert@cs.ucla.edu>
2 23
3 Port to C89. 24 Port to C89.