1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 04:10:54 -08:00

Use process-send-string instead of send-string.

This commit is contained in:
Michael I. Bushnell 1993-01-08 21:14:11 +00:00
parent 6d7ee041a2
commit a973c898d9

View file

@ -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)