Mercurial > hg > xemacs-beta
diff src/emacs.c @ 647:b39c14581166
[xemacs-hg @ 2001-08-13 04:45:47 by ben]
removal of unsigned, size_t, etc.
author | ben |
---|---|
date | Mon, 13 Aug 2001 04:46:48 +0000 |
parents | af57a77cbc92 |
children | ce0b3f2eff35 |
line wrap: on
line diff
--- a/src/emacs.c Wed Aug 08 12:15:04 2001 +0000 +++ b/src/emacs.c Mon Aug 13 04:46:48 2001 +0000 @@ -335,7 +335,8 @@ uintptr_t bss_end = 0; #endif -/* Number of bytes of writable memory we can expect to be able to get */ +/* Number of bytes of writable memory we can expect to be able to get: + Leave this as an unsigned int because it could potentially be 4G */ unsigned int lim_data; /* WARNING! @@ -463,8 +464,8 @@ static int run_temacs_argc; static Extbyte **run_temacs_argv; static Extbyte *run_temacs_args; -static size_t run_temacs_argv_size; -static size_t run_temacs_args_size; +static int run_temacs_argv_size; +static int run_temacs_args_size; static void shut_down_emacs (int sig, Lisp_Object stuff, int no_auto_save);