Variable: semanticdb-ebrowse-file-match
semanticdb-ebrowse-file-match is a customizable variable defined in
db-ebrowse.el.gz.
Value
"\\.\\(hh?\\|HH?\\|hpp\\)"
Documentation
Regular expression matching file names for ebrowse to parse.
This expression should exclude C++ headers that have no extension. By default, include only headers since the semantic use of EBrowse is only for searching via semanticdb, and thus only headers would be searched.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/db-ebrowse.el.gz
(defcustom semanticdb-ebrowse-file-match "\\.\\(hh?\\|HH?\\|hpp\\)"
"Regular expression matching file names for ebrowse to parse.
This expression should exclude C++ headers that have no extension.
By default, include only headers since the semantic use of EBrowse
is only for searching via semanticdb, and thus only headers would
be searched."
:group 'semanticdb
:type 'regexp)