aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1995-10-08 19:38:53 +0000
committerRichard M. Stallman1995-10-08 19:38:53 +0000
commitd1c1c3d29960e872fe72d8d0d8d817847cade723 (patch)
tree7cb5c5adc833bac773c1eb232324a5932cb28c03 /src
parent1a426e9b4c68e3ba40a17e8bf2f5b49dcf6134a2 (diff)
downloademacs-d1c1c3d29960e872fe72d8d0d8d817847cade723.tar.gz
emacs-d1c1c3d29960e872fe72d8d0d8d817847cade723.zip
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];
270char * 270char *
271get_emacs_configuration (void) 271get_emacs_configuration (void)
272{ 272{
273 char *arch, *oem, *os; 273 char *arch, *oem, *os;
274 274
275 /* Determine the processor type. */ 275 /* Determine the processor type. */
276 switch (get_processor_type ()) 276 switch (get_processor_type ())
277 { 277 {
278 278
279#ifdef PROCESSOR_INTEL_386 279#ifdef PROCESSOR_INTEL_386
280 case PROCESSOR_INTEL_386: 280 case PROCESSOR_INTEL_386:
281 case PROCESSOR_INTEL_486: 281 case PROCESSOR_INTEL_486:
282 case PROCESSOR_INTEL_PENTIUM: 282 case PROCESSOR_INTEL_PENTIUM:
283 arch = "i386"; 283 arch = "i386";
284 break; 284 break;
285#endif 285#endif
286 286
287#ifdef PROCESSOR_INTEL_860 287#ifdef PROCESSOR_INTEL_860
288 case PROCESSOR_INTEL_860: 288 case PROCESSOR_INTEL_860:
289 arch = "i860"; 289 arch = "i860";
290 break; 290 break;
291#endif 291#endif
292 292
293#ifdef PROCESSOR_MIPS_R2000 293#ifdef PROCESSOR_MIPS_R2000
294 case PROCESSOR_MIPS_R2000: 294 case PROCESSOR_MIPS_R2000:
295 case PROCESSOR_MIPS_R3000: 295 case PROCESSOR_MIPS_R3000:
296 case PROCESSOR_MIPS_R4000: 296 case PROCESSOR_MIPS_R4000:
297 arch = "mips"; 297 arch = "mips";
298 break; 298 break;
299#endif 299#endif
300 300
301#ifdef PROCESSOR_ALPHA_21064 301#ifdef PROCESSOR_ALPHA_21064
302 case PROCESSOR_ALPHA_21064: 302 case PROCESSOR_ALPHA_21064:
303 arch = "alpha"; 303 arch = "alpha";
304 break; 304 break;
305#endif 305#endif
306 306
307 default: 307 default:
308 arch = "unknown"; 308 arch = "unknown";
309 break; 309 break;
310 } 310 }
311 311
312 /* Let oem be "*" until we figure out how to decode the OEM field. */ 312 /* Let oem be "*" until we figure out how to decode the OEM field. */
313 oem = "*"; 313 oem = "*";
314 314
315#ifdef WINDOWS95 315#ifdef WINDOWS95
316 os = "win"; 316 os = "win";
317#else 317#else
318 os = "nt"; 318 os = "nt";
319#endif 319#endif
320 320
321 sprintf (configuration_buffer, "%s-%s-%s%d.%d", arch, oem, os, 321 sprintf (configuration_buffer, "%s-%s-%s%d.%d", arch, oem, os,
322 get_nt_major_version (), get_nt_minor_version ()); 322 get_nt_major_version (), get_nt_minor_version ());
323 return configuration_buffer; 323 return configuration_buffer;
324} 324}
325 325
326/* Conjure up inode and device numbers that will serve the purpose 326/* Conjure up inode and device numbers that will serve the purpose