emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/process.h


From: Kim F. Storm
Subject: [Emacs-diffs] Changes to emacs/src/process.h
Date: Sun, 17 Mar 2002 15:16:55 -0500

Index: emacs/src/process.h
diff -c emacs/src/process.h:1.18 emacs/src/process.h:1.19
*** emacs/src/process.h:1.18    Sun Oct 14 16:14:49 2001
--- emacs/src/process.h Sun Mar 17 15:16:55 2002
***************
*** 40,52 ****
      Lisp_Object tty_name;
      /* Name of this process */
      Lisp_Object name;
!     /* List of command arguments that this process was run with */
      Lisp_Object command;
      /* (funcall FILTER PROC STRING)  (if FILTER is non-nil)
         to dispose of a bunch of chars from the process all at once */
      Lisp_Object filter;
      /* (funcall SENTINEL PROCESS) when process state changes */
      Lisp_Object sentinel;
      /* Buffer that output is going to */
      Lisp_Object buffer;
      /* Number of this process */
--- 40,56 ----
      Lisp_Object tty_name;
      /* Name of this process */
      Lisp_Object name;
!     /* List of command arguments that this process was run with.
!        Is set to t for a stopped network process; nil otherwise. */
      Lisp_Object command;
      /* (funcall FILTER PROC STRING)  (if FILTER is non-nil)
         to dispose of a bunch of chars from the process all at once */
      Lisp_Object filter;
      /* (funcall SENTINEL PROCESS) when process state changes */
      Lisp_Object sentinel;
+     /* (funcall LOG SERVER CLIENT MESSAGE) when a server process
+        accepts a connection from a client.  */
+     Lisp_Object log;
      /* Buffer that output is going to */
      Lisp_Object buffer;
      /* Number of this process */
***************
*** 54,64 ****
      /* Non-nil if this is really a command channel */
      Lisp_Object command_channel_p;
      /* t if this is a real child process.
!        For a net connection, it is (HOST SERVICE).  */
      Lisp_Object childp;
      /* Marker set to end of last buffer-inserted output from this process */
      Lisp_Object mark;
!     /* Non-nil means kill silently if Emacs is exited.  */
      Lisp_Object kill_without_query;
      /* Record the process status in the raw form in which it comes from 
`wait'.
         This is to avoid consing in a signal handler.  */
--- 58,69 ----
      /* Non-nil if this is really a command channel */
      Lisp_Object command_channel_p;
      /* t if this is a real child process.
!        For a net connection, it is a plist based on the arguments to 
make-network-process.  */
      Lisp_Object childp;
      /* Marker set to end of last buffer-inserted output from this process */
      Lisp_Object mark;
!     /* Non-nil means kill silently if Emacs is exited.
!        This is the inverse of the `query-on-exit' flag.  */
      Lisp_Object kill_without_query;
      /* Record the process status in the raw form in which it comes from 
`wait'.
         This is to avoid consing in a signal handler.  */



reply via email to

[Prev in Thread] Current Thread [Next in Thread]