aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/mocklisp.c6
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 @@
12001-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
12001-10-22 Miles Bader <miles@gnu.org> 62001-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
46DEFUN ("ml-if", Fml_if, Sml_if, 0, UNEVALLED, 0, 46DEFUN ("ml-if", Fml_if, Sml_if, 0, UNEVALLED, 0,
47 "Mocklisp version of `if'. 47 "Mocklisp version of `if'.\n\
48usage: (ml-if COND THEN ELSE...)") 48usage: (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
140DEFUN ("ml-provide-prefix-argument", Fml_provide_prefix_argument, Sml_provide_prefix_argument, 140DEFUN ("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\
143usage: (ml-provide-prefix-argument ARG1 ARG2)") 143usage: (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.")
204DEFUN ("insert-string", Finsert_string, Sinsert_string, 0, MANY, 0, 204DEFUN ("insert-string", Finsert_string, Sinsert_string, 0, MANY, 0,
205 "Mocklisp-compatibility insert function.\n\ 205 "Mocklisp-compatibility insert function.\n\
206Like the function `insert' except that any argument that is a number\n\ 206Like the function `insert' except that any argument that is a number\n\
207is converted into a string by expressing it in decimal. 207is converted into a string by expressing it in decimal.\n\
208usage: (insert-string &rest ARGS)") 208usage: (insert-string &rest ARGS)")
209 (nargs, args) 209 (nargs, args)
210 int nargs; 210 int nargs;