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