all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* strange problem in CVS
@ 2008-12-19 22:20 Dan Nicolaescu
  2008-12-19 22:37 ` Andreas Schwab
  0 siblings, 1 reply; 3+ messages in thread
From: Dan Nicolaescu @ 2008-12-19 22:20 UTC (permalink / raw)
  To: emacs-devel


cvs diff -r1.571 -r1.572 process.c

shows this:

 DEFUN ("list-system-processes", Flist_system_processes, Slist_system_processes,
        0, 0, 0,
        doc: /* Return a list of numerical process IDs of all running processes.
@@ -7498,11 +7071,7 @@ See `system-process-attributes' for gett
 given its ID.  */)
     ()
 {
-#ifdef LISTPROC
-  return LISTPROC ();
-#else
-  return Qnil;
-#endif
+  return list_system_processes ();
 }
 
 DEFUN ("system-process-attributes", Fsystem_process_attributes,
@@ -7558,11 +7127,7 @@ integer or floating point values.
 
     Lisp_Object pid;
 {
-#ifdef PROCATTR
-  return PROCATTR (pid);
-#else
-  return Qnil;
-#endif
+  return system_process_attributes (pid);
 }


but version 1.572 shows that both Flist_system_processes and
Fsystem_process_attributes just return Qnil, instead of doing a function
call.  Any idea what is going on?




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2008-12-19 22:53 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-12-19 22:20 strange problem in CVS Dan Nicolaescu
2008-12-19 22:37 ` Andreas Schwab
2008-12-19 22:53   ` Dan Nicolaescu

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.