diff options
| author | Eli Zaretskii | 2001-10-21 16:55:26 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2001-10-21 16:55:26 +0000 |
| commit | 93026d88c2b31eb101bf0550d129a50b05850ceb (patch) | |
| tree | 0c670d17d72e40c5fe48efbc1d55c68b2034b423 | |
| parent | c169b8f145a9155cd2c03a16bc206559c1ed9beb (diff) | |
| download | emacs-93026d88c2b31eb101bf0550d129a50b05850ceb.tar.gz emacs-93026d88c2b31eb101bf0550d129a50b05850ceb.zip | |
(Fml_if, Fml_provide_prefix_argument)
(Finsert_string): Avoid the multi-line string literals warning.
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/mocklisp.c | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index c6bc374e73f..64e690baf0c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2001-10-21 Eli Zaretskii <eliz@is.elta.co.il> | ||
| 2 | |||
| 3 | * mocklisp.c (Fml_if, Fml_provide_prefix_argument) | ||
| 4 | (Finsert_string): Avoid the multi-line string literals warning. | ||
| 5 | |||
| 1 | 2001-10-22 Miles Bader <miles@gnu.org> | 6 | 2001-10-22 Miles Bader <miles@gnu.org> |
| 2 | 7 | ||
| 3 | * doc.c (Vhelp_manyarg_func_alist): Variable removed. | 8 | * doc.c (Vhelp_manyarg_func_alist): Variable removed. |
diff --git a/src/mocklisp.c b/src/mocklisp.c index 552713d7a2d..38e9f7c1036 100644 --- a/src/mocklisp.c +++ b/src/mocklisp.c | |||
| @@ -44,7 +44,7 @@ Boston, MA 02111-1307, USA. */ | |||
| 44 | */ | 44 | */ |
| 45 | 45 | ||
| 46 | DEFUN ("ml-if", Fml_if, Sml_if, 0, UNEVALLED, 0, | 46 | DEFUN ("ml-if", Fml_if, Sml_if, 0, UNEVALLED, 0, |
| 47 | "Mocklisp version of `if'. | 47 | "Mocklisp version of `if'.\n\ |
| 48 | usage: (ml-if COND THEN ELSE...)") | 48 | usage: (ml-if COND THEN ELSE...)") |
| 49 | (args) | 49 | (args) |
| 50 | Lisp_Object args; | 50 | Lisp_Object args; |
| @@ -139,7 +139,7 @@ DEFUN ("ml-interactive", Fml_interactive, Sml_interactive, 0, 0, 0, | |||
| 139 | 139 | ||
| 140 | 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, |
| 141 | 2, UNEVALLED, 0, | 141 | 2, UNEVALLED, 0, |
| 142 | "Evaluate second argument, using first argument as prefix arg value. | 142 | "Evaluate second argument, using first argument as prefix arg value.\n\ |
| 143 | usage: (ml-provide-prefix-argument ARG1 ARG2)") | 143 | usage: (ml-provide-prefix-argument ARG1 ARG2)") |
| 144 | (args) | 144 | (args) |
| 145 | Lisp_Object args; | 145 | Lisp_Object args; |
| @@ -204,7 +204,7 @@ If either FROM or LENGTH is negative, the length of STRING is added to it.") | |||
| 204 | DEFUN ("insert-string", Finsert_string, Sinsert_string, 0, MANY, 0, | 204 | DEFUN ("insert-string", Finsert_string, Sinsert_string, 0, MANY, 0, |
| 205 | "Mocklisp-compatibility insert function.\n\ | 205 | "Mocklisp-compatibility insert function.\n\ |
| 206 | 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\ |
| 207 | is converted into a string by expressing it in decimal. | 207 | is converted into a string by expressing it in decimal.\n\ |
| 208 | usage: (insert-string &rest ARGS)") | 208 | usage: (insert-string &rest ARGS)") |
| 209 | (nargs, args) | 209 | (nargs, args) |
| 210 | int nargs; | 210 | int nargs; |