Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
3bfbd249
Commit
3bfbd249
authored
Nov 07, 1996
by
Richard M. Stallman
Browse files
(display-time-format): New variable.
(display-time-string-forms): Use display-time-format.
parent
81b8f0e6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
7 deletions
+13
-7
lisp/time.el
lisp/time.el
+13
-7
No files found.
lisp/time.el
View file @
3bfbd249
...
...
@@ -100,17 +100,23 @@ This runs the normal hook `display-time-hook' after each update."
'display-time-event-handler))))
(defvar display-time-format
(concat
(if display-time-day-and-date
"
%a
%b
%e
" "")
(if display-time-24hr-format "
%H:%m
" "
%-I:%M%p
"))
"
*A
string
specifying
the
format
for
displaying
the
time
in
the
mode
line.
See
the
function
`
format-time-string
'
for
an
explanation
of
how
to
write
this
string.
")
(defvar display-time-string-forms
'((if display-time-day-and-date
(format "
%s
%s
%s
" dayname monthname day)
"")
(format "
%s:%s%s
"
(if display-time-24hr-format 24-hours 12-hours)
minutes
(if display-time-24hr-format "" am-pm))
'((format-time-string display-time-format now)
load
(if mail "
Mail
" ""))
"
*A
list
of
expressions
governing
display
of
the
time
in
the
mode
line.
For
most
purposes,
you
can
control
the
time
format
using
`
display-time-format
'
which
is
a
more
standard
interface.
This
expression
is
a
list
of
expressions
that
can
involve
the
keywords
`
load
',
`
day
',
`
month
',
and
`
year
',
`
12-hours
',
`
24-hours
',
`
minutes
',
`
seconds
',
all
numbers
in
string
form,
and
`
monthname
',
`
dayname
',
`
am-pm
',
...
...
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