diff options
author | Kenichi Ito <ken.i54k@gmail.com> | 2014-03-24 08:31:56 +0900 |
---|---|---|
committer | Kenichi Ito <ken.i54k@gmail.com> | 2014-03-24 08:31:56 +0900 |
commit | 88a617097cd61d3568a1a5717d2ed7bf2d182876 (patch) | |
tree | 0b4faff4790c2dfba087e997ed26ca32ff23fe37 | |
parent | 59fee9f0699f67e3810989a43db5a7251049016c (diff) | |
download | pygments-88a617097cd61d3568a1a5717d2ed7bf2d182876.tar.gz |
Add in the lexer class
-rw-r--r-- | pygments/lexers/functional.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/functional.py b/pygments/lexers/functional.py index ade26e97..5552cd46 100644 --- a/pygments/lexers/functional.py +++ b/pygments/lexers/functional.py @@ -723,7 +723,7 @@ class CommonLispLexer(RegexLexer): .. versionadded:: 0.9 """ name = 'Common Lisp' - aliases = ['common-lisp', 'cl', 'lisp'] + aliases = ['common-lisp', 'cl', 'lisp', 'elisp', 'emacs'] filenames = ['*.cl', '*.lisp', '*.el'] # use for Elisp too mimetypes = ['text/x-common-lisp'] |