From e4d121f8272ad29d6f6fd0dda6f2dfa07fd08663 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Wed, 5 Oct 2022 11:15:08 -0400 Subject: highlight: Add support for lisp highlighting. --- highlight.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/highlight.scm b/highlight.scm index 51f2b02..5244c6f 100644 --- a/highlight.scm +++ b/highlight.scm @@ -2,15 +2,17 @@ #:use-module (ice-9 match) #:use-module (sxml match) #:use-module (syntax-highlight) + #:use-module (syntax-highlight c) + #:use-module (syntax-highlight lisp) #:use-module (syntax-highlight scheme) #:use-module (syntax-highlight xml) - #:use-module (syntax-highlight c) #:export (highlight-code highlight-scheme)) (define (maybe-highlight-code lang source) (let ((lexer (match lang ('scheme lex-scheme) + ('lisp lex-lisp) ('xml lex-xml) ('c lex-c) (_ #f)))) -- cgit v1.2.3