summaryrefslogtreecommitdiff
path: root/lisp/time.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1994-02-09 05:48:11 +0000
committerRichard M. Stallman <rms@gnu.org>1994-02-09 05:48:11 +0000
commite3d4ecd7ecd6ca1528acddc016cea7a0fe9c4749 (patch)
tree680581f16db5d5f0b9b556f201b024133c4947e9 /lisp/time.el
parent499080a054b422230e25eec2b5167cfff6d8625f (diff)
downloademacs-e3d4ecd7ecd6ca1528acddc016cea7a0fe9c4749.tar.gz
(display-time): Use expand-file-name to make file name of wakeup.
Diffstat (limited to 'lisp/time.el')
-rw-r--r--lisp/time.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/time.el b/lisp/time.el
index bcd0ae445fc..3e61e78448d 100644
--- a/lisp/time.el
+++ b/lisp/time.el
@@ -74,7 +74,7 @@ After each update, `display-time-hook' is run with `run-hooks'."
(setq display-time-string "")
(setq display-time-process
(start-process "display-time" nil
- (concat exec-directory "wakeup")
+ (expand-file-name "wakeup" exec-directory)
(int-to-string display-time-interval)))
(process-kill-without-query display-time-process)
(set-process-sentinel display-time-process 'display-time-sentinel)