summaryrefslogtreecommitdiff
path: root/src/w32.c
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2022-04-18 21:04:57 +0300
committerEli Zaretskii <eliz@gnu.org>2022-04-18 21:04:57 +0300
commita45c1c45a29cbf9416bb03f77c99b383db43e7a0 (patch)
treef259753ae762ea7c86f1ed1b18d3452c1806c528 /src/w32.c
parent850074636e73509b09c28e965c1af054a84f4069 (diff)
downloademacs-a45c1c45a29cbf9416bb03f77c99b383db43e7a0.tar.gz
emacs-a45c1c45a29cbf9416bb03f77c99b383db43e7a0.tar.bz2
emacs-a45c1c45a29cbf9416bb03f77c99b383db43e7a0.zip
Minor improvements in 'restart-emacs' on MS-Windows
* src/w32.c (w32_reexec_emacs): Explicitly request a new console for the restarted Emacs -nw, and specify its dimensions. Specify NULL instead of security attributes, per examples on the Internet. * src/w32console.c (initialize_w32_display): Check errors in call to GetConsoleCursorInfo.
Diffstat (limited to 'src/w32.c')
-rw-r--r--src/w32.c51
1 files changed, 28 insertions, 23 deletions
diff --git a/src/w32.c b/src/w32.c
index e4237579d84..74923ffece9 100644
--- a/src/w32.c
+++ b/src/w32.c
@@ -10628,41 +10628,46 @@ int
w32_reexec_emacs (char *cmd_line, const char *wdir)
{
STARTUPINFO si;
- SECURITY_ATTRIBUTES sec_attrs;
BOOL status;
PROCESS_INFORMATION proc_info;
+ DWORD dwCreationFlags = NORMAL_PRIORITY_CLASS;
GetStartupInfo (&si); /* Use the same startup info as the caller. */
- sec_attrs.nLength = sizeof (sec_attrs);
- sec_attrs.lpSecurityDescriptor = NULL;
- sec_attrs.bInheritHandle = FALSE;
-
- /* Make sure we are in the original directory, in case the command
- line specifies the program as a relative file name. */
- chdir (wdir);
-
- /* This is a kludge: it causes the restarted "emacs -nw" to have a
- new console window created for it, and that new window might have
- different (default) properties, not the ones of the parent
- process's console window. But without this, restarting Emacs in
- the -nw mode simply doesn't work. FIXME! */
if (inhibit_window_system)
{
- if (!FreeConsole ())
+ HANDLE screen_handle;
+ CONSOLE_SCREEN_BUFFER_INFO screen_info;
+
+ screen_handle = GetStdHandle (STD_OUTPUT_HANDLE);
+ if (screen_handle != INVALID_HANDLE_VALUE
+ && GetConsoleScreenBufferInfo (screen_handle, &screen_info))
{
- errno = ENOEXEC;
- return -1;
+ /* Make the restarted Emacs's console window the same
+ dimensions as ours. FIXME: for some reason this doesn't
+ seem to work! */
+ si.dwFlags |= STARTF_USECOUNTCHARS;
+ si.dwXCountChars = screen_info.dwSize.X;
+ si.dwYCountChars = screen_info.dwSize.Y;
}
+ /* This is a kludge: it causes the restarted "emacs -nw" to have
+ a new console window created for it, and that new window
+ might have different (default) properties, not the ones of
+ the parent process's console window. But without this,
+ restarting Emacs in the -nw mode simply doesn't work.
+ FIXME! */
+ dwCreationFlags = CREATE_NEW_CONSOLE;
}
- status = CreateProcess (NULL, /* program */
+ /* Make sure we are in the original directory, in case the command
+ line specifies the program as a relative file name. */
+ chdir (wdir);
+
+ status = CreateProcess (NULL, /* no program, take from command line */
cmd_line, /* command line */
- &sec_attrs, /* process attributes */
+ NULL,
NULL, /* thread attributes */
- TRUE, /* inherit handles? */
- inhibit_window_system
- ? 0 /* inherit parent's console */
- : NORMAL_PRIORITY_CLASS,
+ FALSE, /* unherit handles? */
+ dwCreationFlags,
NULL, /* environment */
wdir, /* initial directory */
&si, /* startup info */