Variable: reftex-index-phrases-logical-and-regexp
reftex-index-phrases-logical-and-regexp is a customizable variable
defined in reftex-vars.el.gz.
Value
" *&& *"
Documentation
Regexp matching the and operator for index arguments in phrases file.
When several index arguments in a phrase line are separated by this operator, each part will generate an index macro. So each match of the search phrase will produce *several* different index entries.
Note: make sure this does no match things which are not separators.
This logical and has higher priority than the logical or specified in
reftex-index-phrases-logical-or-regexp.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/reftex-vars.el.gz
(defcustom reftex-index-phrases-logical-and-regexp " *&& *"
"Regexp matching the `and' operator for index arguments in phrases file.
When several index arguments in a phrase line are separated by this
operator, each part will generate an index macro. So each match of
the search phrase will produce *several* different index entries.
Note: make sure this does no match things which are not separators.
This logical `and' has higher priority than the logical `or' specified in
`reftex-index-phrases-logical-or-regexp'."
:group 'reftex-index-support
:type 'regexp)