From 5140bb8850f0597d6533c0b612b58e24ec618430 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sat, 2 Sep 2017 16:12:53 +0200 Subject: [PATCH] Autoload json library --- core/core-lib.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/core-lib.el b/core/core-lib.el index d5b241959..81e6ae883 100644 --- a/core/core-lib.el +++ b/core/core-lib.el @@ -21,6 +21,9 @@ (dolist (sym '(when-let if-let string-trim string-join string-blank-p string-lessp)) (autoload sym "subr-x" nil nil 'macro)) +(dolist (sym '(json-read json-read-file json-read-from-string json-encode)) + (autoload sym "json")) + ;; ;; Helpers