comparison src/process.c @ 100350:d698608b3a92

* 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>.
author Juanma Barranquero <lekktu@gmail.com>
date Thu, 11 Dec 2008 08:46:35 +0000
parents 41eda8c1e9ca
children b4151b279e44
comparison
equal deleted inserted replaced
100349:88838d8ca34d 100350:d698608b3a92
7500 return Qnil; 7500 return Qnil;
7501 #endif 7501 #endif
7502 } 7502 }
7503 7503
7504 DEFUN ("system-process-attributes", Fsystem_process_attributes, 7504 DEFUN ("system-process-attributes", Fsystem_process_attributes,
7505 Ssystem_process_attributeses, 1, 1, 0, 7505 Ssystem_process_attributes, 1, 1, 0,
7506 doc: /* Return attributes of the process given by its PID, a number. 7506 doc: /* Return attributes of the process given by its PID, a number.
7507 7507
7508 Value is an alist where each element is a cons cell of the form 7508 Value is an alist where each element is a cons cell of the form
7509 7509
7510 \(KEY . VALUE) 7510 \(KEY . VALUE)
7926 defsubr (&Sset_process_coding_system); 7926 defsubr (&Sset_process_coding_system);
7927 defsubr (&Sprocess_coding_system); 7927 defsubr (&Sprocess_coding_system);
7928 defsubr (&Sset_process_filter_multibyte); 7928 defsubr (&Sset_process_filter_multibyte);
7929 defsubr (&Sprocess_filter_multibyte_p); 7929 defsubr (&Sprocess_filter_multibyte_p);
7930 defsubr (&Slist_system_processes); 7930 defsubr (&Slist_system_processes);
7931 defsubr (&Ssystem_process_attributeses); 7931 defsubr (&Ssystem_process_attributes);
7932 } 7932 }
7933 7933
7934 7934
7935 #else /* not subprocesses */ 7935 #else /* not subprocesses */
7936 7936
8228 { 8228 {
8229 return Qnil; 8229 return Qnil;
8230 } 8230 }
8231 8231
8232 DEFUN ("system-process-attributes", Fsystem_process_attributes, 8232 DEFUN ("system-process-attributes", Fsystem_process_attributes,
8233 Ssystem_process_attributeses, 1, 1, 0, 8233 Ssystem_process_attributes, 1, 1, 0,
8234 doc: /* Return attributes of the process given by its PID, a number. 8234 doc: /* Return attributes of the process given by its PID, a number.
8235 8235
8236 Value is an alist where each element is a cons cell of the form 8236 Value is an alist where each element is a cons cell of the form
8237 8237
8238 \(KEY . VALUE) 8238 \(KEY . VALUE)
8299 staticpro (&QCname); 8299 staticpro (&QCname);
8300 8300
8301 defsubr (&Sget_buffer_process); 8301 defsubr (&Sget_buffer_process);
8302 defsubr (&Sprocess_inherit_coding_system_flag); 8302 defsubr (&Sprocess_inherit_coding_system_flag);
8303 defsubr (&Slist_system_processes); 8303 defsubr (&Slist_system_processes);
8304 defsubr (&Ssystem_process_attributeses); 8304 defsubr (&Ssystem_process_attributes);
8305 } 8305 }
8306 8306
8307 8307
8308 #endif /* not subprocesses */ 8308 #endif /* not subprocesses */
8309 8309