aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
authorMiles Bader2009-02-23 05:06:36 +0000
committerMiles Bader2009-02-23 05:06:36 +0000
commita20878b6d8caccb2b5bf38f02dccf28d10ea2223 (patch)
tree1575f6f7a73e85e06d700c365e11a8e6921cbf75 /src/process.c
parent0038d4781b4a25175cd85a5bddb5c845f1d89ef2 (diff)
downloademacs-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.c18
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.
7076If this functionality is unsupported, return nil. 7076If this functionality is unsupported, return nil.
7077 7077
7078See `system-process-attributes' for getting attributes of a process 7078See `process-attributes' for getting attributes of a process given its ID. */)
7079given its ID. */)
7080 () 7079 ()
7081{ 7080{
7082 return list_system_processes (); 7081 return list_system_processes ();
7083} 7082}
7084 7083
7085DEFUN ("system-process-attributes", Fsystem_process_attributes, 7084DEFUN ("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
7089Value is an alist where each element is a cons cell of the form 7088Value 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.
7811If this functionality is unsupported, return nil. 7810If this functionality is unsupported, return nil.
7812 7811
7813See `system-process-attributes' for getting attributes of a process 7812See `process-attributes' for getting attributes of a process given its ID. */)
7814given its ID. */)
7815 () 7813 ()
7816{ 7814{
7817 return list_system_processes (); 7815 return list_system_processes ();
7818} 7816}
7819 7817
7820DEFUN ("system-process-attributes", Fsystem_process_attributes, 7818DEFUN ("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
7824Value is an alist where each element is a cons cell of the form 7822Value 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