Function: eieio-speedbar-make-tag-line

eieio-speedbar-make-tag-line is a byte-compiled function defined in eieio-speedbar.el.gz.

Signature

(eieio-speedbar-make-tag-line ARG &rest ARGS)

Implementations

(eieio-speedbar-make-tag-line (OBJECT eieio-speedbar) DEPTH) in `eieio-speedbar.el'.

Insert a tag line into speedbar at point for OBJECT. All objects a child of symbol `eieio-speedbar' can be created from this method. Override this if you need non-traditional tag lines. Argument DEPTH is the depth at which the tag line is inserted.

(eieio-speedbar-make-tag-line OBJECT DEPTH) in `eieio-speedbar.el'.

Insert a tag line into speedbar at point for OBJECT. By default, all objects appear as simple TAGS with no need to inherit from the special `eieio-speedbar' classes. Child classes should redefine this method to create more accurate tag lines. Argument DEPTH is the depth at which the tag line is inserted.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/eieio-speedbar.el.gz
(cl-defmethod eieio-speedbar-make-tag-line (object depth)
  "Insert a tag line into speedbar at point for OBJECT.
By default, all objects appear as simple TAGS with no need to inherit from
the special `eieio-speedbar' classes.  Child classes should redefine this
method to create more accurate tag lines.
Argument DEPTH is the depth at which the tag line is inserted."
  (speedbar-make-tag-line nil nil nil nil
			  (eieio-speedbar-object-buttonname object)
			  'eieio-speedbar-object-click
			  object
			  'speedbar-tag-face
			  depth))