]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fprocess_status): Document connect and failed return values.
authorKim F. Storm <storm@cua.dk>
Fri, 1 Mar 2002 00:00:21 +0000 (00:00 +0000)
committerKim F. Storm <storm@cua.dk>
Fri, 1 Mar 2002 00:00:21 +0000 (00:00 +0000)
src/ChangeLog
src/process.c

index 53709a496c53f9c0343c2464e540effda53802ef..1f04069c06a422ddc2d6920931d8e2d1c42022bd 100644 (file)
@@ -2,6 +2,7 @@
 
        * process.c (Qconnect, Qfailed): New variables.
        (syms_of_process): Intern and staticpro them.
+       (Fprocess_status): Document connect and failed return values.
        [NON_BLOCKING_CONNECT]: New conditional.
        (connect_wait_mask, num_pending_connects): New variables.
        (status_message): Convert Qfailed status.
@@ -12,7 +13,7 @@
        (wait_reading_process_input): Poll for status of non-blocking
        connects.  Exec sentinel directly when connect succeeds.
        (status_notify): Don't read process output if not yet connected.
-
+       
 2002-02-28  Kim F. Storm  <storm@cua.dk>
 
        * window.c: (minibuf_selected_window): Renamed from
index 6f6f681f04194544045c5b0f6c9291041b31223d..21845b98b41628874ebd0076e6be620f73a54fcb 100644 (file)
@@ -636,6 +636,8 @@ exit -- for a process that has exited.
 signal -- for a process that has got a fatal signal.
 open -- for a network stream connection that is open.
 closed -- for a network stream connection that is closed.
+connect -- when waiting for a non-blocking connection to complete.
+failed -- when a non-blocking connection has failed.
 nil -- if arg is a process name and no such process exists.
 PROCESS may be a process, a buffer, the name of a process, or
 nil, indicating the current buffer's process.  */)