From: Jason Rumney Date: Mon, 17 May 2004 22:27:53 +0000 (+0000) Subject: * w32proc.c (create_child): Use make_number instead of masking pid. X-Git-Tag: ttn-vms-21-2-B4~6173 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8f5457ae6053acfd6197ae734554da41f650fb8d;p=emacs.git * w32proc.c (create_child): Use make_number instead of masking pid. --- diff --git a/src/w32proc.c b/src/w32proc.c index 88afa590bbe..0c24f0b9c17 100644 --- a/src/w32proc.c +++ b/src/w32proc.c @@ -366,10 +366,8 @@ create_child (char *exe, char *cmdline, char *env, int is_gui_app, if (cp->pid < 0) cp->pid = -cp->pid; -#if defined(NO_UNION_TYPE) && !defined (USE_LSB_TAG) /* pid must fit in a Lisp_Int */ - cp->pid = (cp->pid & VALMASK); -#endif + cp->pid = make_number (cp->pid); *pPid = cp->pid;