From 4d52e9cc4b42f449d74bf2dbb19dfdd4b00322fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Trojnara?= Date: Wed, 4 Jun 2025 18:38:28 +0200 Subject: [PATCH] JavaScript format fix. --- script.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/script.c b/script.c index aace931..87326d8 100644 --- a/script.c +++ b/script.c @@ -35,8 +35,8 @@ const SCRIPT_FORMAT supported_formats[] = { #define header_hash "SIG # Begin signature block" #define footer_hash "SIG # End signature block" -#define header_js "SIG // Begin signature block" -#define footer_js "SIG // End signature block" +#define header_js "Begin signature block" +#define footer_js "End signature block" typedef struct { const char *open, *close, *header, *footer; @@ -46,7 +46,7 @@ const SCRIPT_COMMENT comment_text[] = { [comment_hash] = {"# ", "", header_hash, footer_hash}, [comment_xml] = {"", header_hash, footer_hash}, [comment_c] = {"/* ", " */", header_hash, footer_hash}, - [comment_js] = {"// ", "", header_js, footer_js} + [comment_js] = {"// SIG // ", "", header_js, footer_js} }; struct script_ctx_st {