diff options
| author | Juanma Barranquero | 2013-07-17 01:29:05 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2013-07-17 01:29:05 +0200 |
| commit | b1dc4084264128eb303198f8b5cb6d70ee3b3034 (patch) | |
| tree | f7f71c0547770a5b45652adfe372647dbec39ea2 /src | |
| parent | 50a30ccec8932037b7f56122d723037cf8993147 (diff) | |
| download | emacs-b1dc4084264128eb303198f8b5cb6d70ee3b3034.tar.gz emacs-b1dc4084264128eb303198f8b5cb6d70ee3b3034.zip | |
src/w32fns.c (unwind_create_tip_frame): Fix declaration.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/w32fns.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index a70058ac690..62529d8d778 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-07-16 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * w32fns.c (unwind_create_tip_frame): Fix declaration. | ||
| 4 | |||
| 1 | 2013-07-16 Paul Eggert <eggert@cs.ucla.edu> | 5 | 2013-07-16 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 6 | ||
| 3 | Fix w32 bug with call-process-region (Bug#14885). | 7 | Fix w32 bug with call-process-region (Bug#14885). |
diff --git a/src/w32fns.c b/src/w32fns.c index eab8a6b8bd2..5d9200bdd7b 100644 --- a/src/w32fns.c +++ b/src/w32fns.c | |||
| @@ -318,7 +318,7 @@ x_window_to_frame (struct w32_display_info *dpyinfo, HWND wdesc) | |||
| 318 | 318 | ||
| 319 | 319 | ||
| 320 | static Lisp_Object unwind_create_frame (Lisp_Object); | 320 | static Lisp_Object unwind_create_frame (Lisp_Object); |
| 321 | static Lisp_Object unwind_create_tip_frame (Lisp_Object); | 321 | static void unwind_create_tip_frame (Lisp_Object); |
| 322 | static void my_create_window (struct frame *); | 322 | static void my_create_window (struct frame *); |
| 323 | static void my_create_tip_window (struct frame *); | 323 | static void my_create_tip_window (struct frame *); |
| 324 | 324 | ||