]> git.eshelyaron.com Git - emacs.git/commitdiff
(kill_buffer_processes): For net conn, use Fdelete_process.
authorRichard M. Stallman <rms@gnu.org>
Wed, 1 Jun 1994 20:36:08 +0000 (20:36 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 1 Jun 1994 20:36:08 +0000 (20:36 +0000)
src/process.c

index 6a65a1668aadcc2dc374495576c74e358ff10d20..a6276c1211573da85d752b1d23b46dd00bb4e773 100644 (file)
@@ -2836,7 +2836,7 @@ kill_buffer_processes (buffer)
          && (NILP (buffer) || EQ (XPROCESS (proc)->buffer, buffer)))
        {
          if (NETCONN_P (proc))
-           deactivate_process (proc);
+           Fdelete_process (proc);
          else if (XINT (XPROCESS (proc)->infd) >= 0)
            process_send_signal (proc, SIGHUP, Qnil, 1);
        }