From: Richard M. Stallman Date: Wed, 15 Jan 1997 20:19:54 +0000 (+0000) Subject: (get_emacs_configuration): Return windows95 instead of win95. X-Git-Url: http://git.hcoop.net/bpt/emacs.git/commitdiff_plain/1f8bd7fb361f8b9f8b4b5076da6c9b6a6f315094 (get_emacs_configuration): Return windows95 instead of win95. --- 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 ());