comparison src/w32.c @ 16867:1c792ac8facd

(get_emacs_configuration): Return windows95 instead of win95.
author Richard M. Stallman <rms@gnu.org>
date Wed, 15 Jan 1997 20:19:54 +0000
parents 4ed80eda6fac
children 36babc489b0c
comparison
equal deleted inserted replaced
16866:3244576af168 16867:1c792ac8facd
686 } 686 }
687 687
688 /* Let oem be "*" until we figure out how to decode the OEM field. */ 688 /* Let oem be "*" until we figure out how to decode the OEM field. */
689 oem = "*"; 689 oem = "*";
690 690
691 os = (GetVersion () & 0x80000000) ? "win95" : "nt"; 691 os = (GetVersion () & 0x80000000) ? "windows95" : "nt";
692 692
693 sprintf (configuration_buffer, "%s-%s-%s%d.%d", arch, oem, os, 693 sprintf (configuration_buffer, "%s-%s-%s%d.%d", arch, oem, os,
694 get_w32_major_version (), get_w32_minor_version ()); 694 get_w32_major_version (), get_w32_minor_version ());
695 return configuration_buffer; 695 return configuration_buffer;
696 } 696 }