summaryrefslogtreecommitdiff
path: root/lisp/=timer.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1993-05-31 17:59:07 +0000
committerRichard M. Stallman <rms@gnu.org>1993-05-31 17:59:07 +0000
commit19e978283319fe221d95ae8d1b9abc083339ca06 (patch)
tree7fdd405cd166a519d411ac5973289b53eede7217 /lisp/=timer.el
parent50d886dc5bdb30fbf56876421d1df024f388e263 (diff)
downloademacs-19e978283319fe221d95ae8d1b9abc083339ca06.tar.gz
(run-at-time): Pass args to start-process in right order.
Diffstat (limited to 'lisp/=timer.el')
-rw-r--r--lisp/=timer.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/=timer.el b/lisp/=timer.el
index 1bfc5ec323a..609224a66e5 100644
--- a/lisp/=timer.el
+++ b/lisp/=timer.el
@@ -71,8 +71,9 @@ Relative times may be specified as a series of numbers followed by units:
(let ((process-connection-type nil))
;; Don't search the exec path for the timer program;
;; we know exactly which one we want.
- (start-process (expand-file-name timer-program exec-directory)
- nil "timer"))
+ (start-process "timer" nil
+ (expand-file-name timer-program
+ exec-directory)))
timer-alist nil)
(set-process-filter timer-process 'timer-process-filter)
(set-process-sentinel timer-process 'timer-process-sentinel)