diff options
| author | Miles Bader | 2009-02-23 05:06:36 +0000 |
|---|---|---|
| committer | Miles Bader | 2009-02-23 05:06:36 +0000 |
| commit | a20878b6d8caccb2b5bf38f02dccf28d10ea2223 (patch) | |
| tree | 1575f6f7a73e85e06d700c365e11a8e6921cbf75 /src/process.c | |
| parent | 0038d4781b4a25175cd85a5bddb5c845f1d89ef2 (diff) | |
| download | emacs-a20878b6d8caccb2b5bf38f02dccf28d10ea2223.tar.gz emacs-a20878b6d8caccb2b5bf38f02dccf28d10ea2223.zip | |
Rename `system-process-attributes' to `process-attributes'
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-1553
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/src/process.c b/src/process.c index 10b3b714d54..143c58030c1 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -7075,15 +7075,14 @@ DEFUN ("list-system-processes", Flist_system_processes, Slist_system_processes, | |||
| 7075 | doc: /* Return a list of numerical process IDs of all running processes. | 7075 | doc: /* Return a list of numerical process IDs of all running processes. |
| 7076 | If this functionality is unsupported, return nil. | 7076 | If this functionality is unsupported, return nil. |
| 7077 | 7077 | ||
| 7078 | See `system-process-attributes' for getting attributes of a process | 7078 | See `process-attributes' for getting attributes of a process given its ID. */) |
| 7079 | given its ID. */) | ||
| 7080 | () | 7079 | () |
| 7081 | { | 7080 | { |
| 7082 | return list_system_processes (); | 7081 | return list_system_processes (); |
| 7083 | } | 7082 | } |
| 7084 | 7083 | ||
| 7085 | DEFUN ("system-process-attributes", Fsystem_process_attributes, | 7084 | DEFUN ("process-attributes", Fprocess_attributes, |
| 7086 | Ssystem_process_attributes, 1, 1, 0, | 7085 | Sprocess_attributes, 1, 1, 0, |
| 7087 | doc: /* Return attributes of the process given by its PID, a number. | 7086 | doc: /* Return attributes of the process given by its PID, a number. |
| 7088 | 7087 | ||
| 7089 | Value is an alist where each element is a cons cell of the form | 7088 | Value is an alist where each element is a cons cell of the form |
| @@ -7511,7 +7510,7 @@ The variable takes effect when `start-process' is called. */); | |||
| 7511 | defsubr (&Sset_process_filter_multibyte); | 7510 | defsubr (&Sset_process_filter_multibyte); |
| 7512 | defsubr (&Sprocess_filter_multibyte_p); | 7511 | defsubr (&Sprocess_filter_multibyte_p); |
| 7513 | defsubr (&Slist_system_processes); | 7512 | defsubr (&Slist_system_processes); |
| 7514 | defsubr (&Ssystem_process_attributes); | 7513 | defsubr (&Sprocess_attributes); |
| 7515 | } | 7514 | } |
| 7516 | 7515 | ||
| 7517 | 7516 | ||
| @@ -7810,15 +7809,14 @@ DEFUN ("list-system-processes", Flist_system_processes, Slist_system_processes, | |||
| 7810 | doc: /* Return a list of numerical process IDs of all running processes. | 7809 | doc: /* Return a list of numerical process IDs of all running processes. |
| 7811 | If this functionality is unsupported, return nil. | 7810 | If this functionality is unsupported, return nil. |
| 7812 | 7811 | ||
| 7813 | See `system-process-attributes' for getting attributes of a process | 7812 | See `process-attributes' for getting attributes of a process given its ID. */) |
| 7814 | given its ID. */) | ||
| 7815 | () | 7813 | () |
| 7816 | { | 7814 | { |
| 7817 | return list_system_processes (); | 7815 | return list_system_processes (); |
| 7818 | } | 7816 | } |
| 7819 | 7817 | ||
| 7820 | DEFUN ("system-process-attributes", Fsystem_process_attributes, | 7818 | DEFUN ("process-attributes", Fprocess_attributes, |
| 7821 | Ssystem_process_attributes, 1, 1, 0, | 7819 | Sprocess_attributes, 1, 1, 0, |
| 7822 | doc: /* Return attributes of the process given by its PID, a number. | 7820 | doc: /* Return attributes of the process given by its PID, a number. |
| 7823 | 7821 | ||
| 7824 | Value is an alist where each element is a cons cell of the form | 7822 | Value is an alist where each element is a cons cell of the form |
| @@ -7957,7 +7955,7 @@ syms_of_process () | |||
| 7957 | defsubr (&Sget_buffer_process); | 7955 | defsubr (&Sget_buffer_process); |
| 7958 | defsubr (&Sprocess_inherit_coding_system_flag); | 7956 | defsubr (&Sprocess_inherit_coding_system_flag); |
| 7959 | defsubr (&Slist_system_processes); | 7957 | defsubr (&Slist_system_processes); |
| 7960 | defsubr (&Ssystem_process_attributes); | 7958 | defsubr (&Sprocess_attributes); |
| 7961 | } | 7959 | } |
| 7962 | 7960 | ||
| 7963 | 7961 | ||