Variable: reftex-index-special-chars

reftex-index-special-chars is a customizable variable defined in reftex-vars.el.gz.

Value

("!" "|" "@" "\"" "\\")

Documentation

Special characters in index entries. The value is a list of five strings.

These correspond to the makeindex keywords LEVEL ENCAP ACTUAL QUOTE ESCAPE.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/reftex-vars.el.gz
(defcustom reftex-index-special-chars '("!" "|" "@" "\"" "\\")
  "Special characters in index entries.  The value is a list of five strings.
These correspond to the makeindex keywords LEVEL ENCAP ACTUAL QUOTE ESCAPE."
  :group 'reftex-index-support
  :type '(list
          (string :tag "LEVEL  separator")
          (string :tag "ENCAP  char     ")
          (string :tag "ACTUAL char     ")
          (string :tag "QUOTE  char     ")
          (string :tag "ESCAPE char     ")))