Variable: semantic-symbol->name-assoc-list

semantic-symbol->name-assoc-list is a buffer-local variable defined in semantic.el.gz.

Documentation

Association between symbols returned, and a string.

The string is used to represent a group of objects of the given type. It is sometimes useful for a language to use a different string in place of the default, even though that language will still return a symbol. For example, Java return's includes, but the string can be replaced with Imports.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic.el.gz
(defvar-local semantic-symbol->name-assoc-list
  '((type     . "Types")
    (variable . "Variables")
    (function . "Functions")
    (include  . "Dependencies")
    (package  . "Provides"))
  "Association between symbols returned, and a string.
The string is used to represent a group of objects of the given type.
It is sometimes useful for a language to use a different string
in place of the default, even though that language will still
return a symbol.  For example, Java return's includes, but the
string can be replaced with `Imports'.")