diff options
| author | Jan D | 2010-08-06 13:28:59 +0200 |
|---|---|---|
| committer | Jan D | 2010-08-06 13:28:59 +0200 |
| commit | 7908fb6097f81219d3f42a68d4d8d43583109b14 (patch) | |
| tree | 42ac7527868ead4844b9ed70fa568e1432c28afb /src/ChangeLog | |
| parent | 4094bf3679e9b64b2c4018edd1ba7e3d63f8d862 (diff) | |
| download | emacs-7908fb6097f81219d3f42a68d4d8d43583109b14.tar.gz emacs-7908fb6097f81219d3f42a68d4d8d43583109b14.zip | |
More undeclared function fixes and add -Wimplicit-function-declaration.
If a function returns Lisp_Object it must be declared, otherwise on a 64-bit
system, it will return just 32 bits (int).
* configure.in: Use -Wimplicit-function-declaration if compiler supports it.
* src/keyboard.h (poll_for_input_1): Unconditionally declare.
* src/xterm.h (x_get_focus_frame): Declare.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index bef939adb4f..835fe921019 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,9 @@ | |||
| 1 | 2010-08-06 Jan Djärv <jan.h.d@swipnet.se> | 1 | 2010-08-06 Jan Djärv <jan.h.d@swipnet.se> |
| 2 | 2 | ||
| 3 | * xterm.h (x_get_focus_frame): Declare. | ||
| 4 | |||
| 5 | * keyboard.h (poll_for_input_1): Unconditionally declare. | ||
| 6 | |||
| 3 | * nsterm.h (x_set_menu_bar_lines): Declare. | 7 | * nsterm.h (x_set_menu_bar_lines): Declare. |
| 4 | 8 | ||
| 5 | * window.c: Don't include menu.h, it depends on lots of other .h-files. | 9 | * window.c: Don't include menu.h, it depends on lots of other .h-files. |