]> git.eshelyaron.com Git - emacs.git/commitdiff
(Finsert_string, Fml_if, Fml_provide_prefix_argument)
authorMiles Bader <miles@gnu.org>
Sun, 21 Oct 2001 14:20:44 +0000 (14:20 +0000)
committerMiles Bader <miles@gnu.org>
Sun, 21 Oct 2001 14:20:44 +0000 (14:20 +0000)
(Fml_prefix_argument_loop): Add usage: string to doc string.

src/mocklisp.c

index 00329b8038ed23f672819836d0462591e2c4a9f2..552713d7a2d616d1effe057d6d8eb5a3873fe685 100644 (file)
@@ -43,7 +43,9 @@ Boston, MA 02111-1307, USA.  */
 * }
 */
 \f
-DEFUN ("ml-if", Fml_if, Sml_if, 0, UNEVALLED, 0, "Mocklisp version of `if'.")
+DEFUN ("ml-if", Fml_if, Sml_if, 0, UNEVALLED, 0,
+       "Mocklisp version of `if'.
+usage: (ml-if COND THEN ELSE...)")
   (args)
      Lisp_Object args;
 {
@@ -137,7 +139,8 @@ DEFUN ("ml-interactive", Fml_interactive, Sml_interactive, 0, 0, 0,
 \f
 DEFUN ("ml-provide-prefix-argument", Fml_provide_prefix_argument, Sml_provide_prefix_argument,
   2, UNEVALLED, 0,
-  "Evaluate second argument, using first argument as prefix arg value.")
+  "Evaluate second argument, using first argument as prefix arg value.
+usage: (ml-provide-prefix-argument ARG1 ARG2)")
   (args)
      Lisp_Object args;
 {
@@ -150,7 +153,7 @@ DEFUN ("ml-provide-prefix-argument", Fml_provide_prefix_argument, Sml_provide_pr
 
 DEFUN ("ml-prefix-argument-loop", Fml_prefix_argument_loop, Sml_prefix_argument_loop,
        0, UNEVALLED, 0,
-  "")
+  "usage: (ml-prefix-argument-loop ...)")
   (args)
      Lisp_Object args;
 {
@@ -201,7 +204,8 @@ If either FROM or LENGTH is negative, the length of STRING is added to it.")
 DEFUN ("insert-string", Finsert_string, Sinsert_string, 0, MANY, 0,
   "Mocklisp-compatibility insert function.\n\
 Like the function `insert' except that any argument that is a number\n\
-is converted into a string by expressing it in decimal.")
+is converted into a string by expressing it in decimal.
+usage: (insert-string &rest ARGS)")
   (nargs, args)
      int nargs;
      Lisp_Object *args;