Variable: semantic-format-tag-protection-symbol-to-string-assoc-list
semantic-format-tag-protection-symbol-to-string-assoc-list is a
variable defined in format.el.gz.
Value
((public . "+")
(protected . "#")
(private . "-"))
Documentation
Association list of the form (SYMBOL . "STRING") for protection symbols.
For example, it might associate the symbol public with the string "+".
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/format.el.gz
(defvar semantic-format-tag-protection-symbol-to-string-assoc-list
'((public . "+")
(protected . "#")
(private . "-")
)
"Association list of the form (SYMBOL . \"STRING\") for protection symbols.
For example, it might associate the symbol `public' with the string \"+\".")