Function: ede-invoke-method

ede-invoke-method is a byte-compiled function defined in ede.el.gz.

Signature

(ede-invoke-method SYM &rest ARGS)

Documentation

Invoke method SYM on the current buffer's project object.

ARGS are additional arguments to pass to method SYM.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede.el.gz
(defun ede-invoke-method (sym &rest args)
  "Invoke method SYM on the current buffer's project object.
ARGS are additional arguments to pass to method SYM."
  (if (not ede-object)
      (error "Cannot invoke %s for %s" (symbol-name sym)
	     (buffer-name)))
  ;; Always query a target.  There should never be multiple
  ;; projects in a single buffer.
  (apply sym (ede-singular-object "Target: ") args))