diff options
author | pommicket <pommicket@gmail.com> | 2023-01-01 23:47:52 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2023-01-01 23:47:52 -0500 |
commit | 20ac640a6d0b8eb6343709ae6ef921b41a31a726 (patch) | |
tree | 32165e91d2851b35cae59691b84dfaf4aecc7b4d /lsp-json.c | |
parent | 8c16344d5279eef6ed6ad18d4de7e8a2a5bf2f98 (diff) |
restructure syntax.c
Diffstat (limited to 'lsp-json.c')
-rw-r--r-- | lsp-json.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -89,7 +89,7 @@ void json_debug_print_value(const JSON *json, JSONValue value); // defining this instead of using isspace seems to be faster // probably because isspace depends on the locale. -static inline bool json_is_space(char c) { +static bool json_is_space(char c) { return c == ' ' || c == '\n' || c == '\r' || c == '\t'; } |