(child_setup): Delete code in #ifdef vipc.
+2001-09-20 Gerd Moellmann <gerd@gnu.org>
+
+ * callproc.c (Fcall_process): Handle errors from pipe(2).
+ (child_setup): Delete code in #ifdef vipc.
+
2001-09-19 Gerd Moellmann <gerd@gnu.org>
* xdisp.c (decode_mode_spec): Add parameter MULTIBYTE.
{
#ifndef MSDOS
#ifndef macintosh
- pipe (fd);
+ errno = 0;
+ if (pipe (fd) == -1)
+ {
+ emacs_close (filefd);
+ report_file_error ("Creating process pipe", Qnil);
+ }
#endif
#endif
#if 0
/* setpgrp_of_tty is incorrect here; it uses input_fd. */
EMACS_SET_TTY_PGRP (0, &pid);
-#ifdef vipc
- something missing here;
-#endif /* vipc */
-
#ifdef MSDOS
pid = run_msdos_command (new_argv, pwd_var + 4, in, out, err, env);
xfree (pwd_var);