diff options
author | Přemysl Janouch <p@janouch.name> | 2018-10-09 08:54:14 +0200 |
---|---|---|
committer | Přemysl Janouch <p@janouch.name> | 2018-10-09 08:54:14 +0200 |
commit | 7c9fb564af4675f63cdf513699d0de4184189d13 (patch) | |
tree | dad4ee757f0f49d2efe68abf9bb42a940e637c05 /ell.c | |
parent | a004e91c800026679ba71e985dde2bf4d11fe40d (diff) | |
download | ell-7c9fb564af4675f63cdf513699d0de4184189d13.tar.gz ell-7c9fb564af4675f63cdf513699d0de4184189d13.tar.xz ell-7c9fb564af4675f63cdf513699d0de4184189d13.zip |
Cleanup
Use inline semicolons rather then line feeds.
Diffstat (limited to 'ell.c')
-rw-r--r-- | ell.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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) { |