changeset 40148:e6c3a4ad65ce

(Fml_if, Fml_provide_prefix_argument) (Finsert_string): Avoid the multi-line string literals warning.
author Eli Zaretskii <eliz@gnu.org>
date Sun, 21 Oct 2001 16:53:28 +0000
parents 74963e4d77a7
children 7a649633317f
files src/mocklisp.c
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/src/mocklisp.c	Sun Oct 21 16:23:07 2001 +0000
+++ b/src/mocklisp.c	Sun Oct 21 16:53:28 2001 +0000
@@ -44,7 +44,7 @@
 */
 
 DEFUN ("ml-if", Fml_if, Sml_if, 0, UNEVALLED, 0,
-       "Mocklisp version of `if'.
+       "Mocklisp version of `if'.\n\
 usage: (ml-if COND THEN ELSE...)")
   (args)
      Lisp_Object args;
@@ -139,7 +139,7 @@
 
 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.\n\
 usage: (ml-provide-prefix-argument ARG1 ARG2)")
   (args)
      Lisp_Object args;
@@ -204,7 +204,7 @@
 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.\n\
 usage: (insert-string &rest ARGS)")
   (nargs, args)
      int nargs;