Skip to content

Commit

Permalink
Merge pull request #10 from juergenhoetzel/non-essential
Browse files Browse the repository at this point in the history
Prevent Tramp from prompting for user passwords
  • Loading branch information
yilkalargaw authored Oct 10, 2021
2 parents ea2ca74 + aa6afc3 commit 50292af
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion org-auto-tangle.el
Original file line number Diff line number Diff line change
Expand Up @@ -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)))
Expand Down

0 comments on commit 50292af

Please sign in to comment.