Use cl-lib rather than cl variants in org-drill

org-drill requires only cl-lib rather than cl, so should use cl-gensym
rather than gensym I believe.

From 1eef99d550e467bf4a3eaf6bdbe4d3a482f6c187 Mon Sep 17 00:00:00 2001
From: Stig Brautaset <stig@brautaset.org>
Date: Fri, 14 Jul 2017 20:45:37 +0100
Subject: [PATCH 2/3] org-drill.el: use cl-gensym rather than gensym

cl-lib is already required by this file, but cl is not.
This commit is contained in:
Stig Brautaset 2017-07-14 20:57:39 +01:00 committed by Nicolas Goaziou
parent 3e1aeac3b3
commit a49e146621
1 changed files with 1 additions and 1 deletions

View File

@ -622,7 +622,7 @@ regardless of whether the test was successful.")
(defmacro pop-random (place)
(let ((idx (gensym)))
(let ((idx (cl-gensym)))
`(if (null ,place)
nil
(let ((,idx (random* (length ,place))))