Skip to content

Commit 08f7b1b

Browse files
committed
Run the formatter.
1 parent f2ac1c1 commit 08f7b1b

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

src/core/compile.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -982,8 +982,8 @@ JANET_CORE_FN(cfun,
982982

983983
void janet_lib_compile(JanetTable *env) {
984984
JanetRegExt cfuns[] = {
985-
JANET_CORE_REG("compile", cfun),
986-
JANET_REG_END
985+
JANET_CORE_REG("compile", cfun),
986+
JANET_REG_END
987987
};
988988
janet_core_cfuns_ext(env, NULL, cfuns);
989989
}

src/core/parse.c

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1282,21 +1282,21 @@ static Janet parsernext(void *p, Janet key) {
12821282

12831283
/* Load the library */
12841284
void janet_lib_parse(JanetTable *env) {
1285-
JanetRegExt parse_cfuns[] = {
1286-
JANET_CORE_REG("parser/new", cfun_parse_parser),
1287-
JANET_CORE_REG("parser/clone", cfun_parse_clone),
1288-
JANET_CORE_REG("parser/has-more", cfun_parse_has_more),
1289-
JANET_CORE_REG("parser/produce", cfun_parse_produce),
1290-
JANET_CORE_REG("parser/consume", cfun_parse_consume),
1291-
JANET_CORE_REG("parser/byte", cfun_parse_byte),
1292-
JANET_CORE_REG("parser/error", cfun_parse_error),
1293-
JANET_CORE_REG("parser/status", cfun_parse_status),
1294-
JANET_CORE_REG("parser/flush", cfun_parse_flush),
1295-
JANET_CORE_REG("parser/state", cfun_parse_state),
1296-
JANET_CORE_REG("parser/where", cfun_parse_where),
1297-
JANET_CORE_REG("parser/eof", cfun_parse_eof),
1298-
JANET_CORE_REG("parser/insert", cfun_parse_insert),
1299-
JANET_REG_END
1285+
JanetRegExt parse_cfuns[] = {
1286+
JANET_CORE_REG("parser/new", cfun_parse_parser),
1287+
JANET_CORE_REG("parser/clone", cfun_parse_clone),
1288+
JANET_CORE_REG("parser/has-more", cfun_parse_has_more),
1289+
JANET_CORE_REG("parser/produce", cfun_parse_produce),
1290+
JANET_CORE_REG("parser/consume", cfun_parse_consume),
1291+
JANET_CORE_REG("parser/byte", cfun_parse_byte),
1292+
JANET_CORE_REG("parser/error", cfun_parse_error),
1293+
JANET_CORE_REG("parser/status", cfun_parse_status),
1294+
JANET_CORE_REG("parser/flush", cfun_parse_flush),
1295+
JANET_CORE_REG("parser/state", cfun_parse_state),
1296+
JANET_CORE_REG("parser/where", cfun_parse_where),
1297+
JANET_CORE_REG("parser/eof", cfun_parse_eof),
1298+
JANET_CORE_REG("parser/insert", cfun_parse_insert),
1299+
JANET_REG_END
13001300
};
13011301
janet_core_cfuns_ext(env, NULL, parse_cfuns);
13021302
}

src/core/string.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,7 @@ JANET_CORE_FN(cfun_string_trimr,
606606

607607
/* Module entry point */
608608
void janet_lib_string(JanetTable *env) {
609-
JanetRegExt string_cfuns[] = {
609+
JanetRegExt string_cfuns[] = {
610610
JANET_CORE_REG("string/slice", cfun_string_slice),
611611
JANET_CORE_REG("keyword/slice", cfun_keyword_slice),
612612
JANET_CORE_REG("symbol/slice", cfun_symbol_slice),

0 commit comments

Comments
 (0)