Function: cedet-idutils-lid-call
cedet-idutils-lid-call is a byte-compiled function defined in
cedet-idutils.el.gz.
Signature
(cedet-idutils-lid-call FLAGS)
Documentation
Call ID Utils lid with the list of FLAGS.
Return the created buffer with program output.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/cedet-idutils.el.gz
(defun cedet-idutils-lid-call (flags)
"Call ID Utils lid with the list of FLAGS.
Return the created buffer with program output."
(let ((b (get-buffer-create "*CEDET lid*"))
(cd default-directory)
)
(with-current-buffer b
(setq default-directory cd)
(erase-buffer))
(apply #'call-process cedet-idutils-token-command
nil b nil
flags)
b))