diff options
| author | Eli Zaretskii | 2010-08-13 12:21:31 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2010-08-13 12:21:31 +0300 |
| commit | 891ef8f7d735c3841e7b55fcb994823a20005c80 (patch) | |
| tree | c82bb9145fd487f61941815c74cd273504be6c8c /src/ChangeLog | |
| parent | 38e41e0e7878499325a609c8e6d30cd3acda3376 (diff) | |
| download | emacs-891ef8f7d735c3841e7b55fcb994823a20005c80.tar.gz emacs-891ef8f7d735c3841e7b55fcb994823a20005c80.zip | |
Fix -Wall compiler warnings in MSDOS sources.
msdos.c (IT_set_face): Fix format string to match argument types.
(IT_write_glyphs, IT_note_mode_line_highlight)
(IT_set_frame_parameters): Remove unused variables.
(x_set_menu_bar_lines): Declare set_menu_bar_lines.
(IT_set_terminal_modes): Disambiguate expression in if clause.
(Fmsdos_remember_default_colors): Return Qnil.
(IT_set_frame_parameters): Add parens to disambiguate boolean
expression for logging the cursor type to termscript.
(keyboard_layout_list, keypad_translate_map)
(grey_key_translate_map): Add braces in inner initializers.
(dos_rawgetc): Add parens in condition for mouse-3 button-press.
(dos_rawgetc): Remove unused label.
(XMenuActivate): Add braces to remove ambiguous `else'.
(dos_ttraw): Always return a value.
(spawnve): Declare.
(run_msdos_command): Cast 3rd arg of spawnve to "char **".
dosfns.h (x_set_title): Declare.
w16select.c (Fw16_set_clipboard_data, Fw16_get_clipboard_data):
Remove unused variables.
dosfns.c (Fint86, Fdos_memget, Fdos_memput): Remove unused variables.
(init_dosfns): Declare get_lim_data.
(system_process_attributes): Declare Fget_internal_run_time.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 448ce3745c3..527a5f1d865 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,33 @@ | |||
| 1 | 2010-08-13 Eli Zaretskii <eliz@gnu.org> | 1 | 2010-08-13 Eli Zaretskii <eliz@gnu.org> |
| 2 | 2 | ||
| 3 | * msdos.c (IT_set_face): Fix format string to match argument | ||
| 4 | types. | ||
| 5 | (IT_write_glyphs, IT_note_mode_line_highlight) | ||
| 6 | (IT_set_frame_parameters): Remove unused variables. | ||
| 7 | (x_set_menu_bar_lines): Declare set_menu_bar_lines. | ||
| 8 | (IT_set_terminal_modes): Disambiguate expression in if clause. | ||
| 9 | (Fmsdos_remember_default_colors): Return Qnil. | ||
| 10 | (IT_set_frame_parameters): Add parens to disambiguate boolean | ||
| 11 | expression for logging the cursor type to termscript. | ||
| 12 | (keyboard_layout_list, keypad_translate_map) | ||
| 13 | (grey_key_translate_map): Add braces in inner initializers. | ||
| 14 | (dos_rawgetc): Add parens in condition for mouse-3 button-press. | ||
| 15 | (dos_rawgetc): Remove unused label. | ||
| 16 | (XMenuActivate): Add braces to remove ambiguous `else'. | ||
| 17 | (dos_ttraw): Always return a value. | ||
| 18 | (spawnve): Declare. | ||
| 19 | (run_msdos_command): Cast 3rd arg of spawnve to "char **". | ||
| 20 | |||
| 21 | * dosfns.h (x_set_title): Declare. | ||
| 22 | |||
| 23 | * w16select.c (Fw16_set_clipboard_data, Fw16_get_clipboard_data): | ||
| 24 | Remove unused variables. | ||
| 25 | |||
| 26 | * dosfns.c (Fint86, Fdos_memget, Fdos_memput): Remove unused | ||
| 27 | variables. | ||
| 28 | (init_dosfns): Declare get_lim_data. | ||
| 29 | (system_process_attributes): Declare Fget_internal_run_time. | ||
| 30 | |||
| 3 | * xmenu.c (xmenu_show) [!USE_X_TOOLKIT && !USE_GTK]: Fix argument | 31 | * xmenu.c (xmenu_show) [!USE_X_TOOLKIT && !USE_GTK]: Fix argument |
| 4 | list to be consistent with menu.h. | 32 | list to be consistent with menu.h. |
| 5 | 33 | ||