summaryrefslogtreecommitdiff
path: root/pygments/lexers/lisp.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2014-10-04 22:35:59 +0200
committerGeorg Brandl <georg@python.org>2014-10-04 22:35:59 +0200
commit902cdc5c54b43d4401535b89636c328df695803e (patch)
treefd3eb8b8826193615ec9955ec2ecc2bf9d55e101 /pygments/lexers/lisp.py
parentef3477c75c03164dbaf2f60202e8dbeaa6c32a9f (diff)
downloadpygments-902cdc5c54b43d4401535b89636c328df695803e.tar.gz
move module names from _XXXbuiltins to _XXX_builtins to be consistent
Diffstat (limited to 'pygments/lexers/lisp.py')
-rw-r--r--pygments/lexers/lisp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/lisp.py b/pygments/lexers/lisp.py
index a1a8cbef..a0a08efe 100644
--- a/pygments/lexers/lisp.py
+++ b/pygments/lexers/lisp.py
@@ -189,7 +189,7 @@ class CommonLispLexer(RegexLexer):
symbol = r'(\|[^|]+\||(?:%s)(?:%s)*)' % (nonmacro, constituent)
def __init__(self, **options):
- from pygments.lexers._clbuiltins import BUILTIN_FUNCTIONS, \
+ from pygments.lexers._cl_builtins import BUILTIN_FUNCTIONS, \
SPECIAL_FORMS, MACROS, LAMBDA_LIST_KEYWORDS, DECLARATIONS, \
BUILTIN_TYPES, BUILTIN_CLASSES
self.builtin_function = BUILTIN_FUNCTIONS