Use cl-gentemp in another place

This avoids "Variable unknown" errors if a byte-compiled init.elc happening to
encounter an error while evaluating an :init or :config block.
This commit is contained in:
John Wiegley 2017-12-06 22:52:34 -08:00
parent 7803571280
commit 96ecfab9e4

View file

@ -1021,7 +1021,7 @@ meaning:
use-package--hush-function)))
(defun use-package-handler/:catch (name keyword arg rest state)
(let* ((context (cl-gensym "use-package--warning")))
(let* ((context (cl-gentemp "use-package--warning")))
(cond
((not arg)
(use-package-process-keywords name rest state))