From 0f742d6774f2748268d7105dc0d2e88e0a86a7db 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 ff89484..053c8ad 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.49.0