ox-latex: Make org-latex-custom-lang-environments a defcustom

* ox-latex.el (org-latex-custom-lang-environments): Change from defvar
  into a defcustom.
This commit is contained in:
Alan Schmitt 2015-11-30 13:07:56 +01:00
parent 18f0835840
commit b2eb53f27d
1 changed files with 9 additions and 2 deletions

View File

@ -1021,7 +1021,7 @@ block-specific options, you may use the following syntax:
(string :tag "Minted option name ")
(string :tag "Minted option value"))))
(defvar org-latex-custom-lang-environments nil
(defcustom org-latex-custom-lang-environments nil
"Alist mapping languages to language-specific LaTeX environments.
It is used during export of src blocks by the listings and minted
@ -1062,7 +1062,14 @@ will produce
\\end{minted}
\\caption{<caption>}
\\label{<label>}
\\end{listing}")
\\end{listing}"
:group 'org-export-latex
:type '(repeat
(list
(symbol :tag "Language name ")
(string :tag "Environment name or format string")))
:version "25.1"
:package-version '(Org . "9.0"))
;;;; Compilation