From ec4341f844856c7e351d4a7e83cfe0a438f52f59 Mon Sep 17 00:00:00 2001 From: lispy-dobby Date: Sun, 14 Feb 2021 06:57:50 +0000 Subject: [PATCH] moved (require 'org) to global instead of inline --- org-auto-tangle.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org-auto-tangle.el b/org-auto-tangle.el index 8be6471..960917a 100644 --- a/org-auto-tangle.el +++ b/org-auto-tangle.el @@ -72,7 +72,7 @@ all Org buffers unless `#+auto_tangle: nil' is set.") (async-start (let ((args (list file))) `(lambda () - (require 'org) + ;; (require 'org) (let ((start-time (current-time))) (apply #'org-babel-tangle-file ',args) (format "%.2f" (float-time (time-since start-time))))))