diff options
author | NunoSempere <nuno.sempere@protonmail.com> | 2023-09-15 12:41:48 +0300 |
---|---|---|
committer | NunoSempere <nuno.sempere@protonmail.com> | 2023-09-15 12:41:48 +0300 |
commit | 568c0398954dfad3716bc13722ba9ba71dac35e5 (patch) | |
tree | f0794d92ef530b754316f878945144057c5c74e5 /plugins/style | |
parent | f75442ac2b6870cd1762c2964b8040d29a925c90 (diff) |
recompute constants after prettier pass
Diffstat (limited to 'plugins/style')
-rw-r--r-- | plugins/style/style.c | 2 | ||||
-rw-r--r-- | plugins/style/style.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/style/style.c b/plugins/style/style.c index 7463376..0cd6b4f 100644 --- a/plugins/style/style.c +++ b/plugins/style/style.c @@ -1,7 +1,7 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> -#define STYLE_N 4748 + 100 +#define STYLE_N 4709 + 100 void read_style_js(char* string) { diff --git a/plugins/style/style.h b/plugins/style/style.h index b4f28af..7797eae 100644 --- a/plugins/style/style.h +++ b/plugins/style/style.h @@ -1,7 +1,7 @@ #ifndef STYLE #define STYLE -#define STYLE_N 4748 + 100 +#define STYLE_N 4709 + 100 void read_style_js(char* string); |