From: Richard M. Stallman Date: Thu, 29 Dec 1994 19:56:17 +0000 (+0000) Subject: Make size field an EMACS_INT. X-Git-Tag: emacs-19.34~5570 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=776332c4a223aef5a864606db062236d32ba89e1;p=emacs.git Make size field an EMACS_INT. --- diff --git a/src/process.h b/src/process.h index fa20f6d765a..cfffdf70514 100644 --- a/src/process.h +++ b/src/process.h @@ -25,7 +25,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ struct Lisp_Process { - int size; + EMACS_INT size; struct Lisp_Vector *v_next; /* Descriptor by which we read from this process */ Lisp_Object infd;