summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRainer M. Krug <R.M.Krug@gmail.com>2014-07-09 09:31:42 +0200
committerBastien Guerry <bzg@altern.org>2014-07-27 16:20:45 +0200
commit2aec9fddd4eafb1387aaf933f1c7d1c1e5f11634 (patch)
tree4914f0e5d7413864af180c72f9e46e44eb516e2e
parent807369b69b9506470f5cd24cbd18a1407f6829b9 (diff)
downloadorg-mode-2aec9fddd4eafb1387aaf933f1c7d1c1e5f11634.tar.gz
ox-latex.el (org-latex-listings-langs): Add `(makefile "make")'
* ox-latex.el (org-latex-listings-langs): Add `(makefile "make")'.
-rw-r--r--lisp/ox-latex.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ox-latex.el b/lisp/ox-latex.el
index e88719b..bb54428 100644
--- a/lisp/ox-latex.el
+++ b/lisp/ox-latex.el
@@ -777,7 +777,8 @@ into previewing problems, please consult
(shell-script "bash")
(gnuplot "Gnuplot")
(ocaml "Caml") (caml "Caml")
- (sql "SQL") (sqlite "sql"))
+ (sql "SQL") (sqlite "sql")
+ (makefile "make"))
"Alist mapping languages to their listing language counterpart.
The key is a symbol, the major mode symbol without the \"-mode\".
The value is the string that should be inserted as the language
@@ -785,6 +786,8 @@ parameter for the listings package. If the mode name and the
listings name are the same, the language does not need an entry
in this list - but it does not hurt if it is present."
:group 'org-export-latex
+ :version "24.4"
+ :package-version '(Org . "8.3")
:type '(repeat
(list
(symbol :tag "Major mode ")