Variable: semantic-type-relation-separator-character
semantic-type-relation-separator-character is a buffer-local variable
defined in util.el.gz.
Documentation
Character strings used to separate a parent/child relationship.
This list of strings are used for displaying or finding separators in variable field dereferencing. The first character will be used for display. In C, a type field is separated like this: "type.field" thus, the character is a ".". In C, and additional value of "->" would be in the list, so that "type->field" could be found.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/util.el.gz
;;; Code:
(defvar-local semantic-type-relation-separator-character '(".")
"Character strings used to separate a parent/child relationship.
This list of strings are used for displaying or finding separators
in variable field dereferencing. The first character will be used for
display. In C, a type field is separated like this: \"type.field\"
thus, the character is a \".\". In C, and additional value of \"->\"
would be in the list, so that \"type->field\" could be found.")