diff options
| author | Dan Nicolaescu | 2008-12-19 22:53:15 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2008-12-19 22:53:15 +0000 |
| commit | 900d51fcdab4ee458f2389cc5e97cd0f154c5f9a (patch) | |
| tree | e79a5a9acaaf63a4621b5e2cdfb54d7894877554 /src/process.c | |
| parent | 9dcbe89bff8a2b97667d783786603fa53c7da192 (diff) | |
| download | emacs-900d51fcdab4ee458f2389cc5e97cd0f154c5f9a.tar.gz emacs-900d51fcdab4ee458f2389cc5e97cd0f154c5f9a.zip | |
* process.c: (Flist_system_processes):
(Fsystem_process_attributes): Undo previous change, these functions
are duplicated for the benefit of #ifndef subprocesses.
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/process.c b/src/process.c index 84d2f102113..4172ffe1f50 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -7795,7 +7795,7 @@ See `system-process-attributes' for getting attributes of a process | |||
| 7795 | given its ID. */) | 7795 | given its ID. */) |
| 7796 | () | 7796 | () |
| 7797 | { | 7797 | { |
| 7798 | return list_system_processes (); | 7798 | return Qnil; |
| 7799 | } | 7799 | } |
| 7800 | 7800 | ||
| 7801 | DEFUN ("system-process-attributes", Fsystem_process_attributes, | 7801 | DEFUN ("system-process-attributes", Fsystem_process_attributes, |
| @@ -7851,7 +7851,7 @@ integer or floating point values. | |||
| 7851 | 7851 | ||
| 7852 | Lisp_Object pid; | 7852 | Lisp_Object pid; |
| 7853 | { | 7853 | { |
| 7854 | return system_process_attributes (pid); | 7854 | return Qnil; |
| 7855 | } | 7855 | } |
| 7856 | 7856 | ||
| 7857 | void | 7857 | void |