Variable: LaTeX-babel-hyphen-language-alist
LaTeX-babel-hyphen-language-alist is a customizable variable defined
in latex.el.
Value
nil
Documentation
Alist controlling hyphen insertion for specific languages.
It may be used to override the defaults given by LaTeX-babel-hyphen
and LaTeX-babel-hyphen-after-hyphen respectively. The first item
in each element is a string specifying the language as set by the
language-specific style file. The second item is the string to be
used instead of LaTeX-babel-hyphen. The third element is the
value overriding LaTeX-babel-hyphen-after-hyphen.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/latex.el
(defcustom LaTeX-babel-hyphen-language-alist nil
"Alist controlling hyphen insertion for specific languages.
It may be used to override the defaults given by `LaTeX-babel-hyphen'
and `LaTeX-babel-hyphen-after-hyphen' respectively. The first item
in each element is a string specifying the language as set by the
language-specific style file. The second item is the string to be
used instead of `LaTeX-babel-hyphen'. The third element is the
value overriding `LaTeX-babel-hyphen-after-hyphen'."
:group 'LaTeX-macro
:type '(alist :key-type (string :tag "Language")
:value-type (group (string :tag "Hyphen string")
(boolean :tag "Insert plain hyphen first"
:value t))))