diff options
| author | Juanma Barranquero | 2005-07-28 09:48:25 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2005-07-28 09:48:25 +0000 |
| commit | 0962822d9717cac83be675b8a76efae7b17997fe (patch) | |
| tree | 920cf01c3f0fe4bf87b175485063b71de7e903c4 | |
| parent | 14d050df8248a066dc2daca648942db79855dd2f (diff) | |
| download | emacs-0962822d9717cac83be675b8a76efae7b17997fe.tar.gz emacs-0962822d9717cac83be675b8a76efae7b17997fe.zip | |
(my_set_window_pos, my_show_window): Don't declare.
(my_create_window, my_create_tip_window): Make static.
| -rw-r--r-- | src/ChangeLog | 8 | ||||
| -rw-r--r-- | src/w32fns.c | 8 |
2 files changed, 12 insertions, 4 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index dd46874e679..947a780534e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2005-07-28 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * w32fns.c (my_set_window_pos, my_show_window): Don't declare. | ||
| 4 | (my_create_window, my_create_tip_window): Make static. | ||
| 5 | |||
| 6 | * w32term.c (my_show_window, my_set_window_pos, my_set_focus) | ||
| 7 | (my_set_foreground_window, my_destroy_window): Make static. | ||
| 8 | |||
| 1 | 2005-07-26 Paul Eggert <eggert@cs.ucla.edu> | 9 | 2005-07-26 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 10 | ||
| 3 | Merge gnulib getopt implementation into Emacs. | 11 | Merge gnulib getopt implementation into Emacs. |
diff --git a/src/w32fns.c b/src/w32fns.c index 4565e6a6e24..dc8d5998765 100644 --- a/src/w32fns.c +++ b/src/w32fns.c | |||
| @@ -395,10 +395,10 @@ x_window_to_frame (dpyinfo, wdesc) | |||
| 395 | } | 395 | } |
| 396 | 396 | ||
| 397 | 397 | ||
| 398 | BOOL my_show_window P_ ((struct frame *, HWND, int)); | ||
| 399 | void my_set_window_pos P_ ((HWND, HWND, int, int, int, int, UINT)); | ||
| 400 | static Lisp_Object unwind_create_frame P_ ((Lisp_Object)); | 398 | static Lisp_Object unwind_create_frame P_ ((Lisp_Object)); |
| 401 | static Lisp_Object unwind_create_tip_frame P_ ((Lisp_Object)); | 399 | static Lisp_Object unwind_create_tip_frame P_ ((Lisp_Object)); |
| 400 | static void my_create_window P_ ((struct frame *)); | ||
| 401 | static void my_create_tip_window P_ ((struct frame *)); | ||
| 402 | 402 | ||
| 403 | /* TODO: Native Input Method support; see x_create_im. */ | 403 | /* TODO: Native Input Method support; see x_create_im. */ |
| 404 | void x_set_foreground_color P_ ((struct frame *, Lisp_Object, Lisp_Object)); | 404 | void x_set_foreground_color P_ ((struct frame *, Lisp_Object, Lisp_Object)); |
| @@ -3847,7 +3847,7 @@ w32_wnd_proc (hwnd, msg, wParam, lParam) | |||
| 3847 | return 0; | 3847 | return 0; |
| 3848 | } | 3848 | } |
| 3849 | 3849 | ||
| 3850 | void | 3850 | static void |
| 3851 | my_create_window (f) | 3851 | my_create_window (f) |
| 3852 | struct frame * f; | 3852 | struct frame * f; |
| 3853 | { | 3853 | { |
| @@ -3863,7 +3863,7 @@ my_create_window (f) | |||
| 3863 | indirectly via the Window thread, as we do not need to process Window | 3863 | indirectly via the Window thread, as we do not need to process Window |
| 3864 | messages for the tooltip. Creating tooltips indirectly also creates | 3864 | messages for the tooltip. Creating tooltips indirectly also creates |
| 3865 | deadlocks when tooltips are created for menu items. */ | 3865 | deadlocks when tooltips are created for menu items. */ |
| 3866 | void | 3866 | static void |
| 3867 | my_create_tip_window (f) | 3867 | my_create_tip_window (f) |
| 3868 | struct frame *f; | 3868 | struct frame *f; |
| 3869 | { | 3869 | { |