diff options
| author | Dan Nicolaescu | 2008-12-19 22:19:49 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2008-12-19 22:19:49 +0000 |
| commit | 3d7de9fb39bafb8a6de8c4c0f994d967fe321403 (patch) | |
| tree | 911aa5ca093d00fa2b4497070539fd5d5f9b962a /src | |
| parent | d0482e4e9a5e4f37964ded899250aca0552cf585 (diff) | |
| download | emacs-3d7de9fb39bafb8a6de8c4c0f994d967fe321403.tar.gz emacs-3d7de9fb39bafb8a6de8c4c0f994d967fe321403.zip | |
* process.c: (Flist_system_processes):
(Fsystem_process_attributes): Fix strange CVS problem, return the
correct value.
Diffstat (limited to 'src')
| -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 4172ffe1f50..84d2f102113 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 Qnil; | 7798 | return list_system_processes (); |
| 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 Qnil; | 7854 | return system_process_attributes (pid); |
| 7855 | } | 7855 | } |
| 7856 | 7856 | ||
| 7857 | void | 7857 | void |