Function: semantic-ia-sb-more-buttons

semantic-ia-sb-more-buttons is a byte-compiled function defined in ia-sb.el.gz.

Signature

(semantic-ia-sb-more-buttons ARG &rest ARGS)

Implementations

(semantic-ia-sb-more-buttons (CONTEXT semantic-analyze-context-functionarg)) in `semantic/ia-sb.el'.

Show a set of speedbar buttons specific to CONTEXT.

(semantic-ia-sb-more-buttons (CONTEXT semantic-analyze-context-assignment)) in `semantic/ia-sb.el'.

Show a set of speedbar buttons specific to CONTEXT.

(semantic-ia-sb-more-buttons (CONTEXT semantic-analyze-context)) in `semantic/ia-sb.el'.

Show a set of speedbar buttons specific to CONTEXT.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/ia-sb.el.gz
(cl-defmethod semantic-ia-sb-more-buttons ((context semantic-analyze-context))
  "Show a set of speedbar buttons specific to CONTEXT."
  (let ((prefix (oref context prefix)))
    (when prefix
      (speedbar-insert-separator "Prefix")
      (semantic-ia-sb-string-list prefix
				  'speedbar-tag-face
				  'semantic-sb-token-jump))
    ))