diff options
| author | Eli Zaretskii | 2013-12-17 19:46:31 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2013-12-17 19:46:31 +0200 |
| commit | af025ae850c8f30431cf79876c4452d9f1679250 (patch) | |
| tree | 708b8ba45eaffd8e9b3b28d7dec0192d2a517bd7 /src/ChangeLog | |
| parent | cf2b7efc78f0004a58b14a1eb470a306a139197d (diff) | |
| download | emacs-af025ae850c8f30431cf79876c4452d9f1679250.tar.gz emacs-af025ae850c8f30431cf79876c4452d9f1679250.zip | |
Fix some warnings in w32 specific code.
src/w32term.c (w32_initialize): Declare the argument of
set_user_model as const.
src/w32menu.c <MessageBoxW_Proc>: Fix argument declarations.
(w32_menu_show): Constify some arguments passed to MessageBox.
src/w32uniscribe.c (uniscribe_font_driver): Use LISP_INITIALLY_ZERO
to initialize Lisp objects.
src/w32font.c (w32font_driver): Use LISP_INITIALLY_ZERO to
initialize Lisp objects.
src/frame.c (x_set_frame_parameters) [HAVE_X_WINDOWS]: Declare and
use variables used only on X under that condition.
src/fileio.c (Fcopy_file) [!WINDOWSNT]: Don't declare on Windows
variables not used there.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 36378fd911e..aaa8788c2ba 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,23 @@ | |||
| 1 | 2013-12-17 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * w32term.c (w32_initialize): Declare the argument of | ||
| 4 | set_user_model as const. | ||
| 5 | |||
| 6 | * w32menu.c <MessageBoxW_Proc>: Fix argument declarations. | ||
| 7 | (w32_menu_show): Constify some arguments passed to MessageBox. | ||
| 8 | |||
| 9 | * w32uniscribe.c (uniscribe_font_driver): Use LISP_INITIALLY_ZERO | ||
| 10 | to initialize Lisp objects. | ||
| 11 | |||
| 12 | * w32font.c (w32font_driver): Use LISP_INITIALLY_ZERO to | ||
| 13 | initialize Lisp objects. | ||
| 14 | |||
| 15 | * frame.c (x_set_frame_parameters) [HAVE_X_WINDOWS]: Declare and | ||
| 16 | use variables used only on X under that condition. | ||
| 17 | |||
| 18 | * fileio.c (Fcopy_file) [!WINDOWSNT]: Don't declare on Windows | ||
| 19 | variables not used there. | ||
| 20 | |||
| 1 | 2013-12-16 Paul Eggert <eggert@cs.ucla.edu> | 21 | 2013-12-16 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 22 | ||
| 3 | Fix problems with CANNOT_DUMP and EMACSLOADPATH. | 23 | Fix problems with CANNOT_DUMP and EMACSLOADPATH. |