Function: project-am-with-makefile-current
project-am-with-makefile-current is a macro defined in
project-am.el.gz.
Signature
(project-am-with-makefile-current DIR &rest FORMS)
Documentation
Set the Makefile.am in DIR to be the current buffer.
Run FORMS while the makefile is current.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/ede/project-am.el.gz
(defmacro project-am-with-makefile-current (dir &rest forms)
"Set the Makefile.am in DIR to be the current buffer.
Run FORMS while the makefile is current."
(declare (indent 1) (debug (form def-body)))
`(project-am--with-makefile-current ,dir (lambda () ,@forms)))