diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/mocklisp.c | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/mocklisp.c b/src/mocklisp.c index 00329b8038e..552713d7a2d 100644 --- a/src/mocklisp.c +++ b/src/mocklisp.c | |||
| @@ -43,7 +43,9 @@ Boston, MA 02111-1307, USA. */ | |||
| 43 | * } | 43 | * } |
| 44 | */ | 44 | */ |
| 45 | 45 | ||
| 46 | DEFUN ("ml-if", Fml_if, Sml_if, 0, UNEVALLED, 0, "Mocklisp version of `if'.") | 46 | DEFUN ("ml-if", Fml_if, Sml_if, 0, UNEVALLED, 0, |
| 47 | "Mocklisp version of `if'. | ||
| 48 | usage: (ml-if COND THEN ELSE...)") | ||
| 47 | (args) | 49 | (args) |
| 48 | Lisp_Object args; | 50 | Lisp_Object args; |
| 49 | { | 51 | { |
| @@ -137,7 +139,8 @@ DEFUN ("ml-interactive", Fml_interactive, Sml_interactive, 0, 0, 0, | |||
| 137 | 139 | ||
| 138 | DEFUN ("ml-provide-prefix-argument", Fml_provide_prefix_argument, Sml_provide_prefix_argument, | 140 | DEFUN ("ml-provide-prefix-argument", Fml_provide_prefix_argument, Sml_provide_prefix_argument, |
| 139 | 2, UNEVALLED, 0, | 141 | 2, UNEVALLED, 0, |
| 140 | "Evaluate second argument, using first argument as prefix arg value.") | 142 | "Evaluate second argument, using first argument as prefix arg value. |
| 143 | usage: (ml-provide-prefix-argument ARG1 ARG2)") | ||
| 141 | (args) | 144 | (args) |
| 142 | Lisp_Object args; | 145 | Lisp_Object args; |
| 143 | { | 146 | { |
| @@ -150,7 +153,7 @@ DEFUN ("ml-provide-prefix-argument", Fml_provide_prefix_argument, Sml_provide_pr | |||
| 150 | 153 | ||
| 151 | DEFUN ("ml-prefix-argument-loop", Fml_prefix_argument_loop, Sml_prefix_argument_loop, | 154 | DEFUN ("ml-prefix-argument-loop", Fml_prefix_argument_loop, Sml_prefix_argument_loop, |
| 152 | 0, UNEVALLED, 0, | 155 | 0, UNEVALLED, 0, |
| 153 | "") | 156 | "usage: (ml-prefix-argument-loop ...)") |
| 154 | (args) | 157 | (args) |
| 155 | Lisp_Object args; | 158 | Lisp_Object args; |
| 156 | { | 159 | { |
| @@ -201,7 +204,8 @@ If either FROM or LENGTH is negative, the length of STRING is added to it.") | |||
| 201 | DEFUN ("insert-string", Finsert_string, Sinsert_string, 0, MANY, 0, | 204 | DEFUN ("insert-string", Finsert_string, Sinsert_string, 0, MANY, 0, |
| 202 | "Mocklisp-compatibility insert function.\n\ | 205 | "Mocklisp-compatibility insert function.\n\ |
| 203 | Like the function `insert' except that any argument that is a number\n\ | 206 | Like the function `insert' except that any argument that is a number\n\ |
| 204 | is converted into a string by expressing it in decimal.") | 207 | is converted into a string by expressing it in decimal. |
| 208 | usage: (insert-string &rest ARGS)") | ||
| 205 | (nargs, args) | 209 | (nargs, args) |
| 206 | int nargs; | 210 | int nargs; |
| 207 | Lisp_Object *args; | 211 | Lisp_Object *args; |