Variable: reftex-translate-to-ascii-function

reftex-translate-to-ascii-function is a customizable variable defined in reftex-vars.el.gz.

Value

reftex-latin1-to-ascii

Documentation

Filter function to convert a string to ASCII.

The function is used to process a context string before it is used to derive a label from it. The intended application is to convert ISO or Mule characters into something valid in labels. The default function removes the accents from Latin-1 characters. X-Symbol (>=2.6) sets this variable to the much more general x-symbol-translate-to-ascii.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/reftex-vars.el.gz
(defcustom reftex-translate-to-ascii-function 'reftex-latin1-to-ascii
  "Filter function to convert a string to ASCII.
The function is used to process a context string before it is
used to derive a label from it.  The intended application is to
convert ISO or Mule characters into something valid in labels.
The default function removes the accents from Latin-1 characters.
X-Symbol (>=2.6) sets this variable to the much more general
`x-symbol-translate-to-ascii'."
  :group 'reftex-making-and-inserting-labels
  :type 'symbol)