aboutsummaryrefslogtreecommitdiffstats
path: root/src/dosfns.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/dosfns.c')
-rw-r--r--src/dosfns.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dosfns.c b/src/dosfns.c
index e903ef20af0..8ef672fb8bb 100644
--- a/src/dosfns.c
+++ b/src/dosfns.c
@@ -1,6 +1,6 @@
1/* MS-DOS specific Lisp utilities. Coded by Manabu Higashida, 1991. 1/* MS-DOS specific Lisp utilities. Coded by Manabu Higashida, 1991.
2 Major changes May-July 1993 Morten Welinder (only 10% original code left) 2 Major changes May-July 1993 Morten Welinder (only 10% original code left)
3 Copyright (C) 1991, 1993, 1996-1998, 2001-2011 Free Software Foundation, Inc. 3 Copyright (C) 1991, 1993, 1996-1998, 2001-2012 Free Software Foundation, Inc.
4 4
5This file is part of GNU Emacs. 5This file is part of GNU Emacs.
6 6
@@ -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