From 1f8bd7fb361f8b9f8b4b5076da6c9b6a6f315094 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 15 Jan 1997 20:19:54 +0000 Subject: [PATCH] (get_emacs_configuration): Return windows95 instead of win95. --- src/w32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/w32.c b/src/w32.c index 79b3137363..ec1cef3879 100644 --- a/src/w32.c +++ b/src/w32.c @@ -688,7 +688,7 @@ get_emacs_configuration (void) /* Let oem be "*" until we figure out how to decode the OEM field. */ oem = "*"; - os = (GetVersion () & 0x80000000) ? "win95" : "nt"; + os = (GetVersion () & 0x80000000) ? "windows95" : "nt"; sprintf (configuration_buffer, "%s-%s-%s%d.%d", arch, oem, os, get_w32_major_version (), get_w32_minor_version ()); -- 2.20.1