From a71aa14892d73f9238e0d188af811cd74af4611d Mon Sep 17 00:00:00 2001 From: Maxim Cournoyer Date: Tue, 5 Dec 2023 13:21:08 -0500 Subject: [PATCH 1/2] comment: Register a few extra Scheme file extensions. --- src/reuse/comment.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/reuse/comment.py b/src/reuse/comment.py index 239736dfa..d9c129165 100644 --- a/src/reuse/comment.py +++ b/src/reuse/comment.py @@ -712,8 +712,11 @@ class XQueryCommentStyle(CommentStyle): # SuperCollider synth definition (binary) ".scsyndef": UncommentableCommentStyle, ".sh": PythonCommentStyle, + ".sld": LispCommentStyle, # Scheme Library Definition (R7RS) + ".sls": LispCommentStyle, # Scheme Library Source (R6RS) ".sml": MlCommentStyle, ".soy": CCommentStyle, + ".sps": LispCommentStyle, # Scheme Program Source (R6RS) ".sql": HaskellCommentStyle, ".sty": TexCommentStyle, ".svg": UncommentableCommentStyle, From b2f53b720deb1a0543fd526b0451b18be7eeade1 Mon Sep 17 00:00:00 2001 From: Carmen Bianca BAKKER Date: Tue, 2 Jan 2024 14:32:01 +0100 Subject: [PATCH 2/2] Add change log entry and authors entry Signed-off-by: Carmen Bianca BAKKER --- AUTHORS.rst | 2 ++ CHANGELOG.md | 1 + 2 files changed, 3 insertions(+) diff --git a/AUTHORS.rst b/AUTHORS.rst index 107d15f85..6b986d601 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -78,6 +78,8 @@ Contributors - Anthony Loiseau +- Apteryks + Translators ----------- diff --git a/CHANGELOG.md b/CHANGELOG.md index c30d816b7..48cd77493 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -54,6 +54,7 @@ CLI command and its behaviour. There are no guarantees of stability for the - Empty placeholders (`.empty`) (#862) - ShellCheck configuration (`.shellcheckrc`) (#862) - Pylint in-project configuration (`pylintrc`) (#862) + - Lisp schemes (`.sld`, `.sls`, `.sps`) (#875) - Display recommendations for steps to fix found issues during a lint. (#698) - Add support for Pijul VCS. Pijul support is not added to the Docker image. (#858)