From: Richard M. Stallman Date: Wed, 9 Feb 1994 05:48:11 +0000 (+0000) Subject: (display-time): Use expand-file-name to make file name of wakeup. X-Git-Tag: emacs-19.34~9988 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d07482afc1736807b4e914dba011be2db7606cbb;p=emacs.git (display-time): Use expand-file-name to make file name of wakeup. --- 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)