summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-10-08 19:38:53 +0000
committerRichard M. Stallman <rms@gnu.org>1995-10-08 19:38:53 +0000
commit12ce94c117be634d589f3d2756fdfe489a6fdf5f (patch)
tree405aa6cf8eb486ad37243248b8ecb9ef8e6f9842 /src
parentdf2b5adc8aa4ec9248dfa7370671bc2b042b71ae (diff)
downloademacs-12ce94c117be634d589f3d2756fdfe489a6fdf5f.tar.gz
Indentation change.
Diffstat (limited to 'src')
-rw-r--r--src/w32.c62
1 files changed, 31 insertions, 31 deletions
diff --git a/src/w32.c b/src/w32.c
index b466dcecd9f..da286ec7811 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