comparison src/data.c @ 56590:f48e32fbfc6c

(Finteractive_form): Doc fix.
author Luc Teirlinck <teirllm@auburn.edu>
date Mon, 02 Aug 2004 20:46:51 +0000
parents 3310f9505840
children 1eb191c19f7f 0bdb5a16ae51
comparison
equal deleted inserted replaced
56589:eb864aaf90b0 56590:f48e32fbfc6c
774 return make_string (name, strlen (name)); 774 return make_string (name, strlen (name));
775 } 775 }
776 776
777 DEFUN ("interactive-form", Finteractive_form, Sinteractive_form, 1, 1, 0, 777 DEFUN ("interactive-form", Finteractive_form, Sinteractive_form, 1, 1, 0,
778 doc: /* Return the interactive form of CMD or nil if none. 778 doc: /* Return the interactive form of CMD or nil if none.
779 CMD must be a command. Value, if non-nil, is a list 779 If CMD is not a command, the return value is nil.
780 \(interactive SPEC). */) 780 Value, if non-nil, is a list \(interactive SPEC). */)
781 (cmd) 781 (cmd)
782 Lisp_Object cmd; 782 Lisp_Object cmd;
783 { 783 {
784 Lisp_Object fun = indirect_function (cmd); 784 Lisp_Object fun = indirect_function (cmd);
785 785