diff options
| author | Georg Brandl <georg@python.org> | 2019-11-24 16:22:48 +0100 | 
|---|---|---|
| committer | Georg Brandl <georg@python.org> | 2019-11-24 16:40:54 +0100 | 
| commit | 5c073fccaf59265ce76e18a0c5c661044913af2d (patch) | |
| tree | 4c4a5210009567753b9d7839ecddcb240716035c /pygments/lexers/lisp.py | |
| parent | f846028cbf507177fdd954e484a253679758e8c3 (diff) | |
| download | pygments-git-5c073fccaf59265ce76e18a0c5c661044913af2d.tar.gz | |
Elisp: add more string functions (bitbucket PR #841)
Diffstat (limited to 'pygments/lexers/lisp.py')
| -rw-r--r-- | pygments/lexers/lisp.py | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/pygments/lexers/lisp.py b/pygments/lexers/lisp.py index 169d7a9e..9eda4d55 100644 --- a/pygments/lexers/lisp.py +++ b/pygments/lexers/lisp.py @@ -1937,8 +1937,9 @@ class EmacsLispLexer(RegexLexer):          'split-window-internal', 'sqrt', 'standard-case-table',          'standard-category-table', 'standard-syntax-table', 'start-kbd-macro',          'start-process', 'stop-process', 'store-kbd-macro-event', 'string', -        'string-as-multibyte', 'string-as-unibyte', 'string-bytes', -        'string-collate-equalp', 'string-collate-lessp', 'string-equal', +        'string=', 'string<', 'string>', 'string-as-multibyte', +        'string-as-unibyte', 'string-bytes', 'string-collate-equalp', +        'string-collate-lessp', 'string-equal', 'string-greaterp',          'string-lessp', 'string-make-multibyte', 'string-make-unibyte',          'string-match', 'string-to-char', 'string-to-multibyte',          'string-to-number', 'string-to-syntax', 'string-to-unibyte',  | 
