Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
3efcc98a
Commit
3efcc98a
authored
Jul 01, 1997
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Fformat_time_string): Move doc string outside DEFUN.
parent
3336914e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
src/editfns.c
src/editfns.c
+6
-1
No files found.
src/editfns.c
View file @
3efcc98a
...
...
@@ -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
;
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment