branch: elpa/org-drill
commit 82c2ec8b1fb2fd093648a2c89099ed448f31d70d
Author: Phillip Lord <[email protected]>
Commit: Phillip Lord <[email protected]>

    Replace call to gensym with cl-gensym
---
 org-drill.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/org-drill.el b/org-drill.el
index 890a285875..5e6bc93abc 100644
--- a/org-drill.el
+++ b/org-drill.el
@@ -727,7 +727,7 @@ regardless of whether the test was successful.")
 
 
 (defmacro org-drill-pop-random (place)
-  (let ((idx (gensym)))
+  (let ((idx (cl-gensym)))
     `(if (null ,place)
          nil
        (let ((,idx (cl-random (length ,place))))

Reply via email to