From a973c898d92840e9f5f12ef5fbf8ea2163687aba Mon Sep 17 00:00:00 2001 From: "Michael I. Bushnell" Date: Fri, 8 Jan 1993 21:14:11 +0000 Subject: [PATCH] Use process-send-string instead of send-string. --- lisp/timer.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/timer.el b/lisp/timer.el index 1e0211233c9..b743d3caf7f 100644 --- a/lisp/timer.el +++ b/lisp/timer.el @@ -51,7 +51,7 @@ the call to the function. If REPEAT is nil, call it just once." (continue-process timer-process))) ;; There should be a living, breathing timer process now (let ((token (concat (current-time-string) "-" (length timer-alist)))) - (send-string timer-process (concat time "@" token "\n")) + (process-send-string timer-process (concat time "@" token "\n")) (setq timer-alist (cons (list token repeat function args) timer-alist)))) (defun timer-process-filter (proc str)