diff options
| author | Jason Rumney <jasonr@gnu.org> | 2007-09-27 22:08:59 +0000 |
|---|---|---|
| committer | Jason Rumney <jasonr@gnu.org> | 2007-09-27 22:08:59 +0000 |
| commit | dbf60b0750ca6df0558bf7e678f20109be29397d (patch) | |
| tree | 778bf128ae888fe699b4d1e7283dcd16b33d7597 /lib-src | |
| parent | 2e2d237718880d99e5d26c332bb1b7d095c77406 (diff) | |
(w32_window_app): Init common controls when windowed.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ChangeLog | 6 | ||||
| -rw-r--r-- | lib-src/emacsclient.c | 11 |
2 files changed, 14 insertions, 3 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index fca9e1c2e66..a09ba2c078c 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog @@ -1,3 +1,9 @@ +2007-09-27 Jason Rumney <jasonr@gnu.org> + + * makefile.w32-in (emacsclient, emacsclientw): Link to COMCTL32. + + * emacsclient.c (w32_window_app): Init common controls when windowed. + 2007-08-25 Eli Zaretskii <eliz@gnu.org> * Makefile.in (rcs2log, rcs-checkin, grep-changelog, vcdiff): diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c index 9edba132134..c7f0bcf5613 100644 --- a/lib-src/emacsclient.c +++ b/lib-src/emacsclient.c @@ -35,6 +35,7 @@ Boston, MA 02110-1301, USA. */ # include <malloc.h> # include <stdlib.h> # include <windows.h> +# include <commctrl.h> # define NO_SOCKETS_IN_FILE_SYSTEM @@ -159,9 +160,13 @@ w32_window_app () char szTitle[MAX_PATH]; if (window_app < 0) - /* Checking for STDOUT does not work; it's a valid handle also in - nonconsole apps. Testing for the console title seems to work. */ - window_app = (GetConsoleTitleA (szTitle, MAX_PATH) == 0); + { + /* Checking for STDOUT does not work; it's a valid handle also in + nonconsole apps. Testing for the console title seems to work. */ + window_app = (GetConsoleTitleA (szTitle, MAX_PATH) == 0); + if (window_app) + InitCommonControls(); + } return window_app; } |
