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