src/w32heap.h (OS_9X): Renamed from OS_WINDOWS_95.
src/w32heap.c (cache_system_info):
src/w32.c (sys_rename):
src/w32proc.c (find_child_console, sys_kill): All users changed.
+2012-07-29 Eli Zaretskii <eliz@gnu.org>
+
+ * w32heap.h (OS_9X): Renamed from OS_WINDOWS_95.
+
+ * w32heap.c (cache_system_info):
+ * w32.c (sys_rename):
+ * w32proc.c (find_child_console, sys_kill): All users changed.
+
2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
* alloc.c (Fgarbage_collect): Indent as per usual Emacs style.
/* volume_info is set indirectly by map_w32_filename. */
oldname_dev = volume_info.serialnum;
- if (os_subtype == OS_WINDOWS_95)
+ if (os_subtype == OS_9X)
{
char * o;
char * p;
w32_minor_version = version.info.minor;
if (version.info.platform & 0x8000)
- os_subtype = OS_WINDOWS_95;
+ os_subtype = OS_9X;
else
os_subtype = OS_NT;
GetVersionEx (&osinfo_cache);
w32_build_number = osinfo_cache.dwBuildNumber;
- if (os_subtype == OS_WINDOWS_95)
+ if (os_subtype == OS_9X)
w32_build_number &= 0xffff;
}
extern int w32_build_number;
enum {
- OS_WINDOWS_95 = 1,
+ OS_9X = 1,
OS_NT
};
GetClassName (hwnd, window_class, sizeof (window_class));
if (strcmp (window_class,
- (os_subtype == OS_WINDOWS_95)
+ (os_subtype == OS_9X)
? "tty"
: "ConsoleWindowClass") == 0)
{
if (NILP (Vw32_start_process_share_console) && cp && cp->hwnd)
{
#if 1
- if (os_subtype == OS_WINDOWS_95)
+ if (os_subtype == OS_9X)
{
/*
Another possibility is to try terminating the VDM out-right by