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:
parent
6d7ee041a2
commit
a973c898d9
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue