From d1c1c3d29960e872fe72d8d0d8d817847cade723 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 8 Oct 1995 19:38:53 +0000 Subject: [PATCH] Indentation change. --- src/w32.c | 62 +++++++++++++++++++++++++++---------------------------- 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/src/w32.c b/src/w32.c index b466dcecd9..da286ec781 100644 --- a/src/w32.c +++ b/src/w32.c @@ -270,57 +270,57 @@ static char configuration_buffer[32]; char * get_emacs_configuration (void) { - char *arch, *oem, *os; + char *arch, *oem, *os; - /* Determine the processor type. */ - switch (get_processor_type ()) - { + /* Determine the processor type. */ + switch (get_processor_type ()) + { #ifdef PROCESSOR_INTEL_386 - case PROCESSOR_INTEL_386: - case PROCESSOR_INTEL_486: - case PROCESSOR_INTEL_PENTIUM: - arch = "i386"; - break; + case PROCESSOR_INTEL_386: + case PROCESSOR_INTEL_486: + case PROCESSOR_INTEL_PENTIUM: + arch = "i386"; + break; #endif #ifdef PROCESSOR_INTEL_860 - case PROCESSOR_INTEL_860: - arch = "i860"; - break; + case PROCESSOR_INTEL_860: + arch = "i860"; + break; #endif #ifdef PROCESSOR_MIPS_R2000 - case PROCESSOR_MIPS_R2000: - case PROCESSOR_MIPS_R3000: - case PROCESSOR_MIPS_R4000: - arch = "mips"; - break; + case PROCESSOR_MIPS_R2000: + case PROCESSOR_MIPS_R3000: + case PROCESSOR_MIPS_R4000: + arch = "mips"; + break; #endif #ifdef PROCESSOR_ALPHA_21064 - case PROCESSOR_ALPHA_21064: - arch = "alpha"; - break; + case PROCESSOR_ALPHA_21064: + arch = "alpha"; + break; #endif - default: - arch = "unknown"; - break; - } + default: + arch = "unknown"; + break; + } - /* Let oem be "*" until we figure out how to decode the OEM field. */ - oem = "*"; + /* Let oem be "*" until we figure out how to decode the OEM field. */ + oem = "*"; #ifdef WINDOWS95 - os = "win"; + os = "win"; #else - os = "nt"; + os = "nt"; #endif - sprintf (configuration_buffer, "%s-%s-%s%d.%d", arch, oem, os, - get_nt_major_version (), get_nt_minor_version ()); - return configuration_buffer; + sprintf (configuration_buffer, "%s-%s-%s%d.%d", arch, oem, os, + get_nt_major_version (), get_nt_minor_version ()); + return configuration_buffer; } /* Conjure up inode and device numbers that will serve the purpose -- 2.20.1