.dir-locals.el: Require cl-lib at runtime.

* .dir-locals.el (nil)<Geiser>: Load cl-lib when needed.
This commit is contained in:
Miguel Ángel Arruga Vivas 2020-11-01 01:57:02 +01:00
parent a57b0c9eda
commit 96d0f0b138
No known key found for this signature in database
GPG Key ID: 634C6E8979FABEC2
1 changed files with 1 additions and 0 deletions

View File

@ -25,6 +25,7 @@
(unless (boundp 'geiser-guile-load-path)
(defvar geiser-guile-load-path '()))
(make-local-variable 'geiser-guile-load-path)
(require 'cl-lib)
(cl-pushnew root-dir* geiser-guile-load-path
:test #'string-equal)))))