Mercurial > emacs
changeset 3352:03a02339361a
(run-at-time): Pass args to start-process in right order.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 31 May 1993 17:59:07 +0000 |
parents | 1795290d0fc8 |
children | 8cbd38886eef |
files | lisp/=timer.el |
diffstat | 1 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/=timer.el Mon May 31 17:56:14 1993 +0000 +++ b/lisp/=timer.el Mon May 31 17:59:07 1993 +0000 @@ -71,8 +71,9 @@ (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)