branch: externals/async
commit 8bb64e398897d1cc000fc295c5157b4ad1a7bd5b
Author: Thierry Volpiatto <thierry.volpia...@gmail.com>
Commit: Thierry Volpiatto <thierry.volpia...@gmail.com>

    Require cl-lib.
---
 async.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/async.el b/async.el
index 169d40d..3707ad0 100644
--- a/async.el
+++ b/async.el
@@ -31,6 +31,8 @@
 
 ;;; Code:
 
+(eval-when-compile (require 'cl-lib))
+
 (defgroup async nil
   "Simple asynchronous processing in Emacs"
   :group 'emacs)
@@ -54,7 +56,7 @@
   "Remove text properties in SEQUENCE.
 
 Argument SEQUENCE may be a list or a string, if anything else it
-returned unmodified.
+is returned unmodified.
 
 Note that this is a naive function that doesn't remove text properties
 in SEQUENCE recursively, only at the first level which suffice in most

Reply via email to