changeset 18511:92e9fb8b88f4

(Fformat_time_string): Move doc string outside DEFUN.
author Richard M. Stallman <rms@gnu.org>
date Tue, 01 Jul 1997 06:27:54 +0000
parents 1e39ff975b1a
children 6f986049dff1
files src/editfns.c
diffstat 1 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/editfns.c	Tue Jul 01 05:09:25 1997 +0000
+++ b/src/editfns.c	Tue Jul 01 06:27:54 1997 +0000
@@ -801,6 +801,7 @@
     }
 }
 
+/*
 DEFUN ("format-time-string", Fformat_time_string, Sformat_time_string, 1, 3, 0,
   "Use FORMAT-STRING to format the time TIME, or now if omitted.\n\
 TIME is specified as (HIGH LOW . IGNORED) or (HIGH . LOW), as returned by\n\
@@ -837,7 +838,7 @@
 \n\
 Finally, %n is like \n, %t is like \t, %% is a literal %.\n\
 \n\
-Certain flags and modifiers are available with some format controls.
+Certain flags and modifiers are available with some format controls.\n\
 The flags are `_' and `-'.  For certain characters X, %_X is like %X,\n\
 but padded with blanks; %-X is like %X, but without padding.\n\
 %NX (where N stands for an integer) is like %X,\n\
@@ -847,6 +848,10 @@
 %OX is like %X, but uses the locale's number symbols.\n\
 \n\
 For example, to produce full ISO 8601 format, use \"%Y-%m-%dT%T%z\".")
+*/
+
+DEFUN ("format-time-string", Fformat_time_string, Sformat_time_string, 1, 3, 0,
+  0 /* See immediately above */)
   (format_string, time, universal)
      Lisp_Object format_string, time, universal;
 {