diff src/process.c @ 862:278c743f1578

[xemacs-hg @ 2002-06-03 12:23:49 by ben] process fixes process.el: Create new process-synchronize-point to avoid dynamic binding problems. Fix editing bogosity in setting process sentinels. process.c: Don't invalidate the process marker after the process has died to make point synchronization in `call-process-internal' possible.
author ben
date Mon, 03 Jun 2002 12:24:14 +0000
parents 84762348c6f9
children 42375619fa45
line wrap: on
line diff
--- a/src/process.c	Mon Jun 03 10:10:12 2002 +0000
+++ b/src/process.c	Mon Jun 03 12:24:14 2002 +0000
@@ -2161,7 +2161,6 @@
 remove_process (Lisp_Object process)
 {
   Vprocess_list = delq_no_quit (process, Vprocess_list);
-  Fset_marker (XPROCESS (process)->mark, Qnil, Qnil);
 
   deactivate_process (process);
 }
@@ -2652,7 +2651,7 @@
 #ifdef PROCESS_IO_BLOCKING
   DEFVAR_LISP ("network-stream-blocking-port-list", &network_stream_blocking_port_list /*
 List of port numbers or port names to set a blocking I/O mode with connection.
-Nil value means to set a default(non-blocking) I/O mode.
+Nil value means to set a default (non-blocking) I/O mode.
 The value takes effect when `open-network-stream-internal' is called.
 */ );
   network_stream_blocking_port_list = Qnil;