Variable: font-latex-quote-list
font-latex-quote-list is a variable defined in font-latex.el.
Value
(("``" "''")
("<<" ">>" french)
("«" "»" french))
Documentation
List of quote specifiers for quotation fontification.
Each element of the list is either a list consisting of two
strings to be used as opening and closing quotation marks
independently of the value of font-latex-quotes or a list with
three elements where the first and second element are strings for
opening and closing quotation marks and the third element being
either the symbol german or french describing the order of
quotes.
If font-latex-quotes specifies a different state, order of the
added quotes will be reversed for fontification. For example if
'("\\"<" "\">" french) is given but font-latex-quotes
specifies german, quotes will be used like ">foo"< for
fontification.
Source Code
;; Defined in ~/.emacs.d/elpa/auctex-14.1.2/font-latex.el
(defvar font-latex-quote-list '(("``" "''") ("<<" ">>" french) ("«" "»" french))
"List of quote specifiers for quotation fontification.
Each element of the list is either a list consisting of two
strings to be used as opening and closing quotation marks
independently of the value of `font-latex-quotes' or a list with
three elements where the first and second element are strings for
opening and closing quotation marks and the third element being
either the symbol `german' or `french' describing the order of
quotes.
If `font-latex-quotes' specifies a different state, order of the
added quotes will be reversed for fontification. For example if
\\='(\"\\\"<\" \"\\\">\" french) is given but `font-latex-quotes'
specifies `german', quotes will be used like \">foo\"< for
fontification.")