# HG changeset patch # User Michael I. Bushnell # Date 726527651 0 # Node ID 852bc00221851b7e74efd0915dd57e069308e002 # Parent b2af3186e7a77bfb8e795feb6c5bae657fda0ceb Use process-send-string instead of send-string. diff -r b2af3186e7a7 -r 852bc0022185 lisp/=timer.el --- a/lisp/=timer.el Fri Jan 08 21:13:23 1993 +0000 +++ b/lisp/=timer.el Fri Jan 08 21:14:11 1993 +0000 @@ -51,7 +51,7 @@ (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)