Function: ede-apply-project-local-variables
ede-apply-project-local-variables is a byte-compiled function defined
in ede.el.gz.
Signature
(ede-apply-project-local-variables &optional BUFFER)
Documentation
Apply project local variables to the current buffer.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/ede.el.gz
(defun ede-apply-project-local-variables (&optional buffer)
"Apply project local variables to the current buffer."
(with-current-buffer (or buffer (current-buffer))
;; Always apply toplevel variables.
(if (not (eq (ede-current-project) (ede-toplevel)))
(ede-set-project-variables (ede-toplevel)))
;; Next apply more local project's variables.
(if (ede-current-project)
(ede-set-project-variables (ede-current-project)))
))