branch: externals/async commit 270c3d0bd99386dd9a8538990401993a6a3cb1bc Merge: 5f2439adf7 e72e96185e Author: Thierry Volpiatto <thie...@posteo.net> Commit: GitHub <nore...@github.com>
Merge pull request #162 from skangas/typo Fix a typo --- async.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/async.el b/async.el index ad91930d30..64e2fb57e2 100644 --- a/async.el +++ b/async.el @@ -282,7 +282,7 @@ its FINISH-FUNC is nil." (plist-get value :async-message))) (defun async-send (&rest args) - "Send the given messages to the asychronous Emacs PROCESS." + "Send the given messages to the asynchronous Emacs PROCESS." (let ((args (append args '(:async-message t)))) (if async-in-child-emacs (if async-callback @@ -290,7 +290,7 @@ its FINISH-FUNC is nil." (async--transmit-sexp (car args) (list 'quote (cdr args)))))) (defun async-receive () - "Send the given messages to the asychronous Emacs PROCESS." + "Send the given messages to the asynchronous Emacs PROCESS." (async--receive-sexp)) ;;;###autoload