Function: nnheader-find-file-noselect
nnheader-find-file-noselect is a byte-compiled function defined in
nnheader.el.gz.
Signature
(nnheader-find-file-noselect &rest ARGS)
Documentation
Open a file with some variables bound.
See find-file-noselect for the arguments.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/nnheader.el.gz
(defun nnheader-find-file-noselect (&rest args)
"Open a file with some variables bound.
See `find-file-noselect' for the arguments."
(cl-letf* ((format-alist nil)
(auto-mode-alist (mm-auto-mode-alist))
((default-value 'major-mode) 'fundamental-mode)
(enable-local-variables nil)
(after-insert-file-functions nil)
(enable-local-eval nil)
(coding-system-for-read nnheader-file-coding-system)
(version-control 'never)
(find-file-hook nil))
(apply #'find-file-noselect args)))