Browse Source

recognize clojure as a lisp in `org-export-latex-listings-langs'

* lisp/org-latex.el (org-export-latex-listings-langs): clojure is now
  recognized as a lisp
Eric Schulte 14 năm trước cách đây
mục cha
commit
c0018bc3a9
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      lisp/org-latex.el

+ 1 - 1
lisp/org-latex.el

@@ -381,7 +381,7 @@ for example using customize, or with something like
   :type 'boolean)
 
 (defcustom org-export-latex-listings-langs
-  '((emacs-lisp "Lisp") (lisp "Lisp")
+  '((emacs-lisp "Lisp") (lisp "Lisp") (clojure "Lisp")
     (c "C") (cc "C++")
     (fortran "fortran")
     (perl "Perl") (cperl "Perl") (python "Python") (ruby "Ruby")