]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fml_if, Fml_provide_prefix_argument)
authorEli Zaretskii <eliz@gnu.org>
Sun, 21 Oct 2001 16:55:26 +0000 (16:55 +0000)
committerEli Zaretskii <eliz@gnu.org>
Sun, 21 Oct 2001 16:55:26 +0000 (16:55 +0000)
(Finsert_string): Avoid the multi-line string literals warning.

src/ChangeLog
src/mocklisp.c

index c6bc374e73f07b9fba45ee7e52223dff1c63dc09..64e690baf0cdf26aca22518d7d5aaac23cf9a26b 100644 (file)
@@ -1,3 +1,8 @@
+2001-10-21  Eli Zaretskii  <eliz@is.elta.co.il>
+
+       * mocklisp.c (Fml_if, Fml_provide_prefix_argument)
+       (Finsert_string): Avoid the multi-line string literals warning.
+
 2001-10-22  Miles Bader  <miles@gnu.org>
 
        * doc.c (Vhelp_manyarg_func_alist): Variable removed.
index 552713d7a2d616d1effe057d6d8eb5a3873fe685..38e9f7c1036519e85bf368fde5420ab88adc5e0c 100644 (file)
@@ -44,7 +44,7 @@ Boston, MA 02111-1307, USA.  */
 */
 \f
 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-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.\n\
 usage: (ml-provide-prefix-argument ARG1 ARG2)")
   (args)
      Lisp_Object args;
@@ -204,7 +204,7 @@ 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.\n\
 usage: (insert-string &rest ARGS)")
   (nargs, args)
      int nargs;