Function: pcmpl-gnu-make-includes

pcmpl-gnu-make-includes is a byte-compiled function defined in pcmpl-gnu.el.gz.

Signature

(pcmpl-gnu-make-includes)

Documentation

Return a list of all included file names in the current buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/pcmpl-gnu.el.gz
(defun pcmpl-gnu-make-includes ()
  "Return a list of all included file names in the current buffer."
  (let (filenames)
    (goto-char (point-min))
    (while (search-forward-regexp "^include +\\(.*\\)$" nil t)
      (push (match-string-no-properties 1) filenames))
    filenames))