Function: semantic-emacs-lisp-overridable-doc

semantic-emacs-lisp-overridable-doc is a byte-compiled function defined in el.el.gz.

Signature

(semantic-emacs-lisp-overridable-doc TAG)

Documentation

Return the documentation string generated for overloadable functions.

Fetch the item for TAG. Only returns info about what symbols can be used to perform the override.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/bovine/el.el.gz
;;; DOC Strings
;;
(defun semantic-emacs-lisp-overridable-doc (tag)
  "Return the documentation string generated for overloadable functions.
Fetch the item for TAG.  Only returns info about what symbols can be
used to perform the override."
  (if (and (eq (semantic-tag-class tag) 'function)
	   (semantic-tag-get-attribute tag :overloadable))
      ;; Calc the doc to use for the overloadable symbols.
      (mode-local--overload-docstring-extension
       (intern (semantic-tag-name tag)))
    ""))