aboutsummaryrefslogtreecommitdiffstats
path: root/src/dosfns.c
diff options
context:
space:
mode:
authorJuanma Barranquero2011-09-09 03:06:52 +0200
committerJuanma Barranquero2011-09-09 03:06:52 +0200
commit5e617bc2b62189768814fafd1a875e89a094d3ef (patch)
treed96d22e012035d044557abf4de0b8e30b03d61b7 /src/dosfns.c
parent9b1c252e294bed3aef0d2f2fc5d1fa9f72df9ee8 (diff)
downloademacs-5e617bc2b62189768814fafd1a875e89a094d3ef.tar.gz
emacs-5e617bc2b62189768814fafd1a875e89a094d3ef.zip
Whitespace changes.
Diffstat (limited to 'src/dosfns.c')
-rw-r--r--src/dosfns.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dosfns.c b/src/dosfns.c
index e903ef20af0..ab3433b7902 100644
--- a/src/dosfns.c
+++ b/src/dosfns.c
@@ -343,13 +343,13 @@ init_dosfns (void)
343 { 343 {
344 dpmiregs.x.ax = 0x168e; 344 dpmiregs.x.ax = 0x168e;
345 dpmiregs.x.dx = 3; /* get VM title */ 345 dpmiregs.x.dx = 3; /* get VM title */
346 dpmiregs.x.cx = sizeof(parent_vm_title) - 1; 346 dpmiregs.x.cx = sizeof (parent_vm_title) - 1;
347 dpmiregs.x.es = __tb >> 4; 347 dpmiregs.x.es = __tb >> 4;
348 dpmiregs.x.di = __tb & 15; 348 dpmiregs.x.di = __tb & 15;
349 dpmiregs.x.sp = dpmiregs.x.ss = dpmiregs.x.flags = 0; 349 dpmiregs.x.sp = dpmiregs.x.ss = dpmiregs.x.flags = 0;
350 _go32_dpmi_simulate_int (0x2f, &dpmiregs); 350 _go32_dpmi_simulate_int (0x2f, &dpmiregs);
351 if (dpmiregs.x.ax == 1) 351 if (dpmiregs.x.ax == 1)
352 dosmemget (__tb, sizeof(parent_vm_title), parent_vm_title); 352 dosmemget (__tb, sizeof (parent_vm_title), parent_vm_title);
353 } 353 }
354 } 354 }
355 else 355 else
@@ -573,7 +573,7 @@ system_process_attributes (Lisp_Object pid)
573 Fsymbol_value (intern ("before-init-time"))), 573 Fsymbol_value (intern ("before-init-time"))),
574 attrs); 574 attrs);
575 attrs = Fcons (Fcons (Qvsize, 575 attrs = Fcons (Fcons (Qvsize,
576 make_fixnum_or_float ((unsigned long)sbrk(0)/1024)), 576 make_fixnum_or_float ((unsigned long)sbrk (0)/1024)),
577 attrs); 577 attrs);
578 attrs = Fcons (Fcons (Qetime, tem), attrs); 578 attrs = Fcons (Fcons (Qetime, tem), attrs);
579#ifndef SYSTEM_MALLOC 579#ifndef SYSTEM_MALLOC