# HG changeset patch # User Juanma Barranquero # Date 1228985195 0 # Node ID d698608b3a9227ce11051f9da99b01a293ddba8d # Parent 88838d8ca34dc72bfeae23823874d97e3f5099bd * process.c (Fsystem_process_attributes, syms_of_process): Fix typo in name of Ssystem_process_attributes. Reported by Ulrich Mueller . diff -r 88838d8ca34d -r d698608b3a92 src/ChangeLog --- a/src/ChangeLog Thu Dec 11 07:44:27 2008 +0000 +++ b/src/ChangeLog Thu Dec 11 08:46:35 2008 +0000 @@ -1,3 +1,9 @@ +2008-12-11 Juanma Barranquero + + * process.c (Fsystem_process_attributes, syms_of_process): + Fix typo in name of Ssystem_process_attributes. + Reported by Ulrich Mueller . + 2008-12-11 Juanma Barranquero * syntax.c (Fmodify_syntax_entry): Doc fix. diff -r 88838d8ca34d -r d698608b3a92 src/process.c --- a/src/process.c Thu Dec 11 07:44:27 2008 +0000 +++ b/src/process.c Thu Dec 11 08:46:35 2008 +0000 @@ -7502,7 +7502,7 @@ } DEFUN ("system-process-attributes", Fsystem_process_attributes, - Ssystem_process_attributeses, 1, 1, 0, + Ssystem_process_attributes, 1, 1, 0, doc: /* Return attributes of the process given by its PID, a number. Value is an alist where each element is a cons cell of the form @@ -7928,7 +7928,7 @@ defsubr (&Sset_process_filter_multibyte); defsubr (&Sprocess_filter_multibyte_p); defsubr (&Slist_system_processes); - defsubr (&Ssystem_process_attributeses); + defsubr (&Ssystem_process_attributes); } @@ -8230,7 +8230,7 @@ } DEFUN ("system-process-attributes", Fsystem_process_attributes, - Ssystem_process_attributeses, 1, 1, 0, + Ssystem_process_attributes, 1, 1, 0, doc: /* Return attributes of the process given by its PID, a number. Value is an alist where each element is a cons cell of the form @@ -8301,7 +8301,7 @@ defsubr (&Sget_buffer_process); defsubr (&Sprocess_inherit_coding_system_flag); defsubr (&Slist_system_processes); - defsubr (&Ssystem_process_attributeses); + defsubr (&Ssystem_process_attributes); }