Use inline semicolons rather then line feeds.
This commit is contained in:
Přemysl Eric Janouch 2018-10-09 08:54:14 +02:00
parent a004e91c80
commit 7c9fb564af
Signed by: p
GPG Key ID: A0420B94F92B9493
1 changed files with 4 additions and 4 deletions

8
ell.c
View File

@ -1377,10 +1377,10 @@ const char ell_std_composed[] =
"set break { throw _break }\n"
// TODO: we should be able to apply them to all arguments
"set ne? { not (eq? @1 @2) }\n" "set le? { ge? @2 @1 }\n"
"set ge? { not (lt? @1 @2) }\n" "set gt? { lt? @2 @1 }\n"
"set <> { not (= @1 @2) }\n" "set <= { >= @2 @1 }\n"
"set >= { not (< @1 @2) }\n" "set > { < @2 @1 }\n";
"set ne? { not (eq? @1 @2) }; set le? { ge? @2 @1 }\n"
"set ge? { not (lt? @1 @2) }; set gt? { lt? @2 @1 }\n"
"set <> { not (= @1 @2) }; set <= { >= @2 @1 }\n"
"set >= { not (< @1 @2) }; set > { < @2 @1 }\n";
static bool
ell_std_initialize (struct ell *ell) {