Function: autoconf-set-output
autoconf-set-output is a byte-compiled function defined in
autoconf-edit.el.gz.
Signature
(autoconf-set-output OUTPUTLIST)
Documentation
Set the files created in AC_OUTPUT to OUTPUTLIST.
OUTPUTLIST is a list of strings representing relative paths to Makefiles, or other files using Autoconf substitution.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/ede/autoconf-edit.el.gz
(defun autoconf-set-output (outputlist)
"Set the files created in AC_OUTPUT to OUTPUTLIST.
OUTPUTLIST is a list of strings representing relative paths
to Makefiles, or other files using Autoconf substitution."
(if (not (autoconf-find-last-macro "AC_OUTPUT"))
(error "Cannot update version")
(autoconf-edit-cycle
(autoconf-delete-parameter 1)
(autoconf-insert (mapconcat (lambda (a) a) outputlist " ")))))