mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
* sysdep.c (sys_subshell): Don't assume pid_t fits in int.
This commit is contained in:
parent
e2cb57f5f5
commit
5fbab05122
2 changed files with 5 additions and 1 deletions
|
|
@ -1,3 +1,7 @@
|
|||
2012-11-25 Paul Eggert <eggert@cs.ucla.edu>
|
||||
|
||||
* sysdep.c (sys_subshell): Don't assume pid_t fits in int.
|
||||
|
||||
2012-11-24 Ken Brown <kbrown@cornell.edu>
|
||||
|
||||
* keyboard.c (HAVE_MOUSE):
|
||||
|
|
|
|||
|
|
@ -453,7 +453,7 @@ sys_subshell (void)
|
|||
int st;
|
||||
char oldwd[MAXPATHLEN+1]; /* Fixed length is safe on MSDOS. */
|
||||
#endif
|
||||
int pid;
|
||||
pid_t pid;
|
||||
struct save_signal saved_handlers[5];
|
||||
Lisp_Object dir;
|
||||
unsigned char *volatile str_volatile = 0;
|
||||
|
|
|
|||
Loading…
Reference in a new issue