Function: hack-connection-local-variables-apply
hack-connection-local-variables-apply is an autoloaded and
byte-compiled function defined in files-x.el.gz.
Signature
(hack-connection-local-variables-apply CRITERIA)
Documentation
Apply connection-local variables identified by CRITERIA.
Other local variables, like file-local and dir-local variables, will not be changed.
Source Code
;; Defined in /usr/src/emacs/lisp/files-x.el.gz
;;;###autoload
(defun hack-connection-local-variables-apply (criteria)
"Apply connection-local variables identified by CRITERIA.
Other local variables, like file-local and dir-local variables,
will not be changed."
(hack-connection-local-variables criteria)
(let ((file-local-variables-alist
(copy-tree connection-local-variables-alist)))
(hack-local-variables-apply)))