emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] trunk r113561: Fix documentation of list-processes and pro


From: Eli Zaretskii
Subject: [Emacs-diffs] trunk r113561: Fix documentation of list-processes and process-list.
Date: Fri, 26 Jul 2013 18:48:48 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 113561
revision-id: address@hidden
parent: address@hidden
committer: Eli Zaretskii <address@hidden>
branch nick: trunk
timestamp: Fri 2013-07-26 21:48:05 +0300
message:
  Fix documentation of list-processes and process-list.
  
   src/process.c (Fprocess_list): Doc fix.
  
   lisp/simple.el (list-processes): Doc fix.
modified:
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/simple.el                 simple.el-20091113204419-o5vbwnq5f7feedwu-403
  src/ChangeLog                  changelog-20091113204419-o5vbwnq5f7feedwu-1438
  src/process.c                  process.c-20091113204419-o5vbwnq5f7feedwu-462
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-07-26 18:41:18 +0000
+++ b/lisp/ChangeLog    2013-07-26 18:48:05 +0000
@@ -3,6 +3,10 @@
        * emacs-lisp/nadvice.el (advice--called-interactively-skip): Use the new
        `base' arg of backtrace-frame.
 
+2013-07-26  Eli Zaretskii  <address@hidden>
+
+       * simple.el (list-processes): Doc fix.
+
 2013-07-26  Juanma Barranquero  <address@hidden>
 
        * desktop.el (desktop--select-frame):

=== modified file 'lisp/simple.el'
--- a/lisp/simple.el    2013-07-26 01:55:06 +0000
+++ b/lisp/simple.el    2013-07-26 18:48:05 +0000
@@ -3141,14 +3141,17 @@
   (display-buffer (button-get button 'process-buffer)))
 
 (defun list-processes (&optional query-only buffer)
-  "Display a list of all processes.
+  "Display a list of all processes that are Emacs sub-processes.
 If optional argument QUERY-ONLY is non-nil, only processes with
 the query-on-exit flag set are listed.
 Any process listed as exited or signaled is actually eliminated
 after the listing is made.
 Optional argument BUFFER specifies a buffer to use, instead of
 \"*Process List*\".
-The return value is always nil."
+The return value is always nil.
+
+This function lists only processes that were launched by Emacs.  To
+see other processes running on the system, use `list-system-processes'."
   (interactive)
   (or (fboundp 'process-list)
       (error "Asynchronous subprocesses are not supported on this system"))

=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2013-07-26 09:59:59 +0000
+++ b/src/ChangeLog     2013-07-26 18:48:05 +0000
@@ -1,5 +1,7 @@
 2013-07-26  Eli Zaretskii  <address@hidden>
 
+       * process.c (Fprocess_list): Doc fix.
+
        * w32term.c (w32_read_socket) <WM_EMACS_PAINT>: Warn about frame
        being re-exposed only if it didn't ask to become visible.
        <WM_SIZE>: Under SIZE_RESTORED, only set the frame visible if it

=== modified file 'src/process.c'
--- a/src/process.c     2013-07-21 06:53:47 +0000
+++ b/src/process.c     2013-07-26 18:48:05 +0000
@@ -1330,7 +1330,7 @@
 }
 
 DEFUN ("process-list", Fprocess_list, Sprocess_list, 0, 0, 0,
-       doc: /* Return a list of all processes.  */)
+       doc: /* Return a list of all processes that are Emacs sub-processes.  
*/)
   (void)
 {
   return Fmapcar (Qcdr, Vprocess_alist);


reply via email to

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