]> git.eshelyaron.com Git - emacs.git/commitdiff
* process.c (Fsystem_process_attributes, syms_of_process):
authorJuanma Barranquero <lekktu@gmail.com>
Thu, 11 Dec 2008 08:46:35 +0000 (08:46 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Thu, 11 Dec 2008 08:46:35 +0000 (08:46 +0000)
  Fix typo in name of Ssystem_process_attributes.
  Reported by Ulrich Mueller <ulm@kph.uni-mainz.de>.

src/ChangeLog
src/process.c

index 9243aa5664b7f01f1e2454ff320956036325bbd7..14d02758271982704a81cb7f4e5ad1b7be012548 100644 (file)
@@ -1,3 +1,9 @@
+2008-12-11  Juanma Barranquero  <lekktu@gmail.com>
+
+       * process.c (Fsystem_process_attributes, syms_of_process):
+       Fix typo in name of Ssystem_process_attributes.
+       Reported by Ulrich Mueller <ulm@kph.uni-mainz.de>.
+
 2008-12-11  Juanma Barranquero  <lekktu@gmail.com>
 
        * syntax.c (Fmodify_syntax_entry): Doc fix.
index 5084bc8d159f1684b3af834bb86f67d15a81cbd4..aaadedb54191991cbd3936d86fc78b299df3c28e 100644 (file)
@@ -7502,7 +7502,7 @@ given its ID.  */)
 }
 
 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 @@ The variable takes effect when `start-process' is called.  */);
   defsubr (&Sset_process_filter_multibyte);
   defsubr (&Sprocess_filter_multibyte_p);
   defsubr (&Slist_system_processes);
-  defsubr (&Ssystem_process_attributeses);
+  defsubr (&Ssystem_process_attributes);
 }
 
 \f
@@ -8230,7 +8230,7 @@ given its ID.  */)
 }
 
 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 @@ syms_of_process ()
   defsubr (&Sget_buffer_process);
   defsubr (&Sprocess_inherit_coding_system_flag);
   defsubr (&Slist_system_processes);
-  defsubr (&Ssystem_process_attributeses);
+  defsubr (&Ssystem_process_attributes);
 }
 
 \f