Browse Source

ox-latex.el (org-latex-listings-langs): Add `(makefile "make")'

* ox-latex.el (org-latex-listings-langs): Add `(makefile "make")'.
Rainer M. Krug 11 years ago
parent
commit
2aec9fddd4
1 changed files with 4 additions and 1 deletions
  1. 4 1
      lisp/ox-latex.el

+ 4 - 1
lisp/ox-latex.el

@@ -777,7 +777,8 @@ into previewing problems, please consult
     (shell-script "bash")
     (shell-script "bash")
     (gnuplot "Gnuplot")
     (gnuplot "Gnuplot")
     (ocaml "Caml") (caml "Caml")
     (ocaml "Caml") (caml "Caml")
-    (sql "SQL") (sqlite "sql"))
+    (sql "SQL") (sqlite "sql")
+    (makefile "make"))
   "Alist mapping languages to their listing language counterpart.
   "Alist mapping languages to their listing language counterpart.
 The key is a symbol, the major mode symbol without the \"-mode\".
 The key is a symbol, the major mode symbol without the \"-mode\".
 The value is the string that should be inserted as the language
 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
 listings name are the same, the language does not need an entry
 in this list - but it does not hurt if it is present."
 in this list - but it does not hurt if it is present."
   :group 'org-export-latex
   :group 'org-export-latex
+  :version "24.4"
+  :package-version '(Org . "8.3")
   :type '(repeat
   :type '(repeat
 	  (list
 	  (list
 	   (symbol :tag "Major mode       ")
 	   (symbol :tag "Major mode       ")