aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1997-07-01 06:27:54 +0000
committerRichard M. Stallman <[email protected]>1997-07-01 06:27:54 +0000
commit3efcc98a1cd877d8b5bc99c0e17e6d4f39a96435 (patch)
treead4f2ac345c8cbcce7b2646dcc181894d07a9fd0 /src
parent3336914ed020118d7c2e3bada24892b5e443ae4c (diff)
(Fformat_time_string): Move doc string outside DEFUN.
Diffstat (limited to 'src')
-rw-r--r--src/editfns.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/editfns.c b/src/editfns.c
index c4cc301970..2a7694c324 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -801,6 +801,7 @@ lisp_time_argument (specified_time, result)
}
}
+/*
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 @@ by text that describes the specified date and time in TIME:\n\
\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 @@ The modifiers are `E' and `O'. For certain characters X,\n\
%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;
{