emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/w32proc.c [lexbind]


From: Miles Bader
Subject: [Emacs-diffs] Changes to emacs/src/w32proc.c [lexbind]
Date: Tue, 06 Jul 2004 05:34:19 -0400

Index: emacs/src/w32proc.c
diff -c emacs/src/w32proc.c:1.51.2.3 emacs/src/w32proc.c:1.51.2.4
*** emacs/src/w32proc.c:1.51.2.3        Tue Jul  6 09:14:38 2004
--- emacs/src/w32proc.c Tue Jul  6 09:24:08 2004
***************
*** 1,5 ****
  /* Process support for GNU Emacs on the Microsoft W32 API.
!    Copyright (C) 1992, 1995, 1999, 2000, 2001 Free Software Foundation, Inc.
  
  This file is part of GNU Emacs.
  
--- 1,5 ----
  /* Process support for GNU Emacs on the Microsoft W32 API.
!    Copyright (C) 1992, 95, 99, 2000, 01, 04  Free Software Foundation, Inc.
  
  This file is part of GNU Emacs.
  
***************
*** 367,373 ****
      cp->pid = -cp->pid;
  
    /* pid must fit in a Lisp_Int */
!   cp->pid = XUINT (make_number (cp->pid));
  
    *pPid = cp->pid;
  
--- 367,373 ----
      cp->pid = -cp->pid;
  
    /* pid must fit in a Lisp_Int */
!   cp->pid = cp->pid & INTMASK;
  
    *pPid = cp->pid;
  




reply via email to

[Prev in Thread] Current Thread [Next in Thread]