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-Tag: emacs-20.1~3077 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1f8bd7fb361f8b9f8b4b5076da6c9b6a6f315094;p=emacs.git (get_emacs_configuration): Return windows95 instead of win95. --- diff --git a/src/w32.c b/src/w32.c index 79b3137363b..ec1cef38797 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 ());