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
83656a19
Commit
83656a19
authored
Jun 30, 1995
by
Richard M. Stallman
Browse files
(display-time-filter): Move run-hooks inside let.
parent
9d42eea3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
lisp/time.el
lisp/time.el
+4
-2
No files found.
lisp/time.el
View file @
83656a19
...
...
@@ -163,8 +163,10 @@ would give mode line times like `94/12/30 21:07:48 (UTC)'.")
("
Sep
" . "
9
") ("
Oct
" . "
10
") ("
Nov
" . "
11
") ("
Dec
" . "
12
")))))
(dayname (substring time 0 3)))
(setq display-time-string
(mapconcat 'eval display-time-string-forms "
"
)
))
(
run-hooks
'display-time-hook
)
(mapconcat 'eval display-time-string-forms "
"
)
)
;; This is inside the let binding, but we are not going to document
;; what variables are available.
(
run-hooks
'display-time-hook
)
)
(
force-mode-line-update
)
;; Do redisplay right now, if no input pending.
(
sit-for
0
)
)
...
...
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