Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
0962822d
Commit
0962822d
authored
Jul 28, 2005
by
Juanma Barranquero
Browse files
(my_set_window_pos, my_show_window): Don't declare.
(my_create_window, my_create_tip_window): Make static.
parent
14d050df
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
4 deletions
+12
-4
src/ChangeLog
src/ChangeLog
+8
-0
src/w32fns.c
src/w32fns.c
+4
-4
No files found.
src/ChangeLog
View file @
0962822d
2005-07-28 Juanma Barranquero <lekktu@gmail.com>
* w32fns.c (my_set_window_pos, my_show_window): Don't declare.
(my_create_window, my_create_tip_window): Make static.
* w32term.c (my_show_window, my_set_window_pos, my_set_focus)
(my_set_foreground_window, my_destroy_window): Make static.
2005-07-26 Paul Eggert <eggert@cs.ucla.edu>
Merge gnulib getopt implementation into Emacs.
...
...
src/w32fns.c
View file @
0962822d
...
...
@@ -395,10 +395,10 @@ x_window_to_frame (dpyinfo, wdesc)
}
BOOL my_show_window P_ ((struct frame *, HWND, int));
void my_set_window_pos P_ ((HWND, HWND, int, int, int, int, UINT));
static Lisp_Object unwind_create_frame P_ ((Lisp_Object));
static Lisp_Object unwind_create_tip_frame P_ ((Lisp_Object));
static void my_create_window P_ ((struct frame *));
static void my_create_tip_window P_ ((struct frame *));
/* TODO: Native Input Method support; see x_create_im. */
void x_set_foreground_color P_ ((struct frame *, Lisp_Object, Lisp_Object));
...
...
@@ -3847,7 +3847,7 @@ w32_wnd_proc (hwnd, msg, wParam, lParam)
return 0;
}
void
static
void
my_create_window (f)
struct frame * f;
{
...
...
@@ -3863,7 +3863,7 @@ my_create_window (f)
indirectly via the Window thread, as we do not need to process Window
messages for the tooltip. Creating tooltips indirectly also creates
deadlocks when tooltips are created for menu items. */
void
static
void
my_create_tip_window (f)
struct frame *f;
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment