Function: org-babel-find-file-noselect-refresh

org-babel-find-file-noselect-refresh is a byte-compiled function defined in ob-tangle.el.gz.

Signature

(org-babel-find-file-noselect-refresh FILE)

Documentation

Find file ensuring that the latest changes on disk are represented in the file.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ob-tangle.el.gz
(defun org-babel-find-file-noselect-refresh (file)
  "Find file ensuring that the latest changes on disk are represented in the file."
  (find-file-noselect file 'nowarn)
  (with-current-buffer (get-file-buffer file)
    (revert-buffer t t t)))