We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 437dcb0 commit 92fb896Copy full SHA for 92fb896
src/inlines.c
@@ -1339,7 +1339,7 @@ static cmark_node *handle_newline(subject *subj) {
1339
}
1340
1341
// "\r\n\\`&_*[]<!"
1342
-static _Atomic int8_t SPECIAL_CHARS[256] = {
+static int8_t SPECIAL_CHARS[256] = {
1343
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1344
0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0,
1345
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
@@ -1353,7 +1353,7 @@ static _Atomic int8_t SPECIAL_CHARS[256] = {
1353
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
1354
1355
// " ' . -
1356
-static char SMART_PUNCT_CHARS[] = {
+static const char SMART_PUNCT_CHARS[] = {
1357
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1358
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0,
1359
0 commit comments