(refactor): org-roam-db.el eval-when-compile subr-x (#432)

Prevents unnecessary evaluation when compiled .elc is loaded.
From the commentary of subr-x.el:
;; NB If you want to use this library, it's almost always correct to use:
;; (eval-when-compile (require 'subr-x))

See: #429
master
N V 6 years ago committed by GitHub
parent 05c9e8e2e7
commit 40dc3a5af8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      org-roam-db.el

@ -31,7 +31,7 @@
;;
;;; Code:
;;;; Library Requires
(require 'subr-x)
(eval-when-compile (require 'subr-x))
(require 'emacsql)
(require 'emacsql-sqlite)
(require 'org-roam-macs)

Loading…
Cancel
Save