Function: project-am-with-config-current
project-am-with-config-current is a macro defined in project-am.el.gz.
Signature
(project-am-with-config-current FILE &rest FORMS)
Documentation
Set the Configure FILE in the top most directory above DIR as current.
Run FORMS in the configure file. Kill the Configure buffer if it was not already in a buffer.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/ede/project-am.el.gz
(defmacro project-am-with-config-current (file &rest forms)
"Set the Configure FILE in the top most directory above DIR as current.
Run FORMS in the configure file.
Kill the Configure buffer if it was not already in a buffer."
(declare (indent 1) (debug t))
`(with-temp-buffer
(erase-buffer)
(insert-file-contents ,file)
,@forms))