branch: elpa/org-auto-tangle
commit 50292af50d275846baa28e52d94eb8ef69c8d00b
Merge: ea2ca74a68 aa6afc302f
Author: lispy-dobby <[email protected]>
Commit: GitHub <[email protected]>
Merge pull request #10 from juergenhoetzel/non-essential
Prevent Tramp from prompting for user passwords
---
org-auto-tangle.el | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/org-auto-tangle.el b/org-auto-tangle.el
index 8be64716f3..95a8d0f684 100644
--- a/org-auto-tangle.el
+++ b/org-auto-tangle.el
@@ -73,7 +73,8 @@ all Org buffers unless `#+auto_tangle: nil' is set.")
(let ((args (list file)))
`(lambda ()
(require 'org)
- (let ((start-time (current-time)))
+ (let ((start-time (current-time))
+ (non-essential t))
(apply #'org-babel-tangle-file ',args)
(format "%.2f" (float-time (time-since start-time))))))
(let ((message-string (format "Tangling %S completed after" file)))