diff options
| author | Juanma Barranquero | 2007-06-20 08:35:55 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2007-06-20 08:35:55 +0000 |
| commit | 1bb8a291f64fd5db100bda0141ee689ffefea3ae (patch) | |
| tree | b6839dd9e793f6567b42f08d845c28545dd86eb8 | |
| parent | aa5ee2a3744972cfb971eb6665d60a4c42ca554f (diff) | |
| download | emacs-1bb8a291f64fd5db100bda0141ee689ffefea3ae.tar.gz emacs-1bb8a291f64fd5db100bda0141ee689ffefea3ae.zip | |
(w32_delete_display): Remove leftover declaration.
(w32_define_cursor, w32_initialize): Make static.
| -rw-r--r-- | src/ChangeLog | 9 | ||||
| -rw-r--r-- | src/w32term.c | 9 |
2 files changed, 13 insertions, 5 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 3402728de9a..7e8c4ed671b 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,12 @@ | |||
| 1 | 2007-06-20 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * w32term.c (w32_delete_display): Remove leftover declaration. | ||
| 4 | (w32_define_cursor, w32_initialize): Make static. | ||
| 5 | |||
| 6 | * w32.c (_wsa_errlist): Fix typo in error message. | ||
| 7 | (init_environment): Ignore any environment variable from the | ||
| 8 | registry having a null value. | ||
| 9 | |||
| 1 | 2007-06-20 Glenn Morris <rgm@gnu.org> | 10 | 2007-06-20 Glenn Morris <rgm@gnu.org> |
| 2 | 11 | ||
| 3 | * Makefile.in (LIBGIF): Default to -lgif. | 12 | * Makefile.in (LIBGIF): Default to -lgif. |
diff --git a/src/w32term.c b/src/w32term.c index 77e85ca2274..8ca35968a56 100644 --- a/src/w32term.c +++ b/src/w32term.c | |||
| @@ -218,10 +218,9 @@ extern int errno; | |||
| 218 | extern EMACS_INT extra_keyboard_modifiers; | 218 | extern EMACS_INT extra_keyboard_modifiers; |
| 219 | 219 | ||
| 220 | static void x_update_window_end P_ ((struct window *, int, int)); | 220 | static void x_update_window_end P_ ((struct window *, int, int)); |
| 221 | void w32_delete_display P_ ((struct w32_display_info *)); | ||
| 222 | static void w32_handle_tool_bar_click P_ ((struct frame *, | 221 | static void w32_handle_tool_bar_click P_ ((struct frame *, |
| 223 | struct input_event *)); | 222 | struct input_event *)); |
| 224 | void w32_define_cursor P_ ((Window, Cursor)); | 223 | static void w32_define_cursor P_ ((Window, Cursor)); |
| 225 | 224 | ||
| 226 | void x_lower_frame P_ ((struct frame *)); | 225 | void x_lower_frame P_ ((struct frame *)); |
| 227 | void x_scroll_bar_clear P_ ((struct frame *)); | 226 | void x_scroll_bar_clear P_ ((struct frame *)); |
| @@ -230,7 +229,7 @@ void x_raise_frame P_ ((struct frame *)); | |||
| 230 | void x_set_window_size P_ ((struct frame *, int, int, int)); | 229 | void x_set_window_size P_ ((struct frame *, int, int, int)); |
| 231 | void x_wm_set_window_state P_ ((struct frame *, int)); | 230 | void x_wm_set_window_state P_ ((struct frame *, int)); |
| 232 | void x_wm_set_icon_pixmap P_ ((struct frame *, int)); | 231 | void x_wm_set_icon_pixmap P_ ((struct frame *, int)); |
| 233 | void w32_initialize P_ ((void)); | 232 | static void w32_initialize P_ ((void)); |
| 234 | static void x_font_min_bounds P_ ((XFontStruct *, int *, int *)); | 233 | static void x_font_min_bounds P_ ((XFontStruct *, int *, int *)); |
| 235 | int x_compute_min_glyph_bounds P_ ((struct frame *)); | 234 | int x_compute_min_glyph_bounds P_ ((struct frame *)); |
| 236 | static void x_update_end P_ ((struct frame *)); | 235 | static void x_update_end P_ ((struct frame *)); |
| @@ -3278,7 +3277,7 @@ redo_mouse_highlight () | |||
| 3278 | HIWORD (last_mouse_motion_event.lParam)); | 3277 | HIWORD (last_mouse_motion_event.lParam)); |
| 3279 | } | 3278 | } |
| 3280 | 3279 | ||
| 3281 | void | 3280 | static void |
| 3282 | w32_define_cursor (window, cursor) | 3281 | w32_define_cursor (window, cursor) |
| 3283 | Window window; | 3282 | Window window; |
| 3284 | Cursor cursor; | 3283 | Cursor cursor; |
| @@ -6345,7 +6344,7 @@ static struct redisplay_interface w32_redisplay_interface = | |||
| 6345 | w32_shift_glyphs_for_insert | 6344 | w32_shift_glyphs_for_insert |
| 6346 | }; | 6345 | }; |
| 6347 | 6346 | ||
| 6348 | void | 6347 | static void |
| 6349 | w32_initialize () | 6348 | w32_initialize () |
| 6350 | { | 6349 | { |
| 6351 | rif = &w32_redisplay_interface; | 6350 | rif = &w32_redisplay_interface; |