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

    Don't quote numbers as well
    
    * async.el (async-inject-variables): Do it.
---
 async.el | 1 +
 1 file changed, 1 insertion(+)

diff --git a/async.el b/async.el
index 020e424..771e641 100644
--- a/async.el
+++ b/async.el
@@ -106,6 +106,7 @@ It is intended to be used as follows:
                         (not (string-match "-syntax-table\\'" sname)))
                (unless (or (stringp value)
                            (memq value '(nil t))
+                           (numberp value)
                            (vectorp value))
                  (setq value `(quote ,value)))
                (when noprops

Reply via email to