Mercurial > hg > xemacs-beta
diff src/process.c @ 167:85ec50267440 r20-3b10
Import from CVS: tag r20-3b10
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:45:46 +0200 |
parents | 28f395d8dc7a |
children | 15872534500d |
line wrap: on
line diff
--- a/src/process.c Mon Aug 13 09:44:44 2007 +0200 +++ b/src/process.c Mon Aug 13 09:45:46 2007 +0200 @@ -889,7 +889,7 @@ #endif #ifndef WINDOWSNT - pid = vfork (); + pid = fork (); if (pid == 0) #endif /* not WINDOWSNT */ { @@ -1038,7 +1038,7 @@ if (pid < 0) { close_descriptor_pair (forkin, forkout); - report_file_error ("Doing vfork", Qnil); + report_file_error ("Doing fork", Qnil); } p->pid = make_int (pid);