Mercurial > emacs
changeset 1753:852bc0022185
Use process-send-string instead of send-string.
author | Michael I. Bushnell <mib@gnu.org> |
---|---|
date | Fri, 08 Jan 1993 21:14:11 +0000 |
parents | b2af3186e7a7 |
children | 71e65e9d4f86 |
files | lisp/=timer.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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)