From aaf569fcb2705f1042f1a581a114f03b77cfda96 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Wed, 11 Oct 2023 22:17:34 -0400 Subject: [PATCH] src/svgtiny_strings.h: intern "id" for libcss As a prerequisite for implementing a libcss node_id() select handler, we intern the string "id" that it will need access to. --- src/svgtiny_strings.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/svgtiny_strings.h b/src/svgtiny_strings.h index dfd6c22..38fdd2c 100644 --- a/src/svgtiny_strings.h +++ b/src/svgtiny_strings.h @@ -10,6 +10,7 @@ #define SVGTINY_STRING_ACTION(s) SVGTINY_STRING_ACTION2(s,s) +SVGTINY_STRING_ACTION(id) SVGTINY_STRING_ACTION(svg) SVGTINY_STRING_ACTION(viewBox) SVGTINY_STRING_ACTION(a) -- 2.43.2