From 7c9fb564af4675f63cdf513699d0de4184189d13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Janouch?= Date: Tue, 9 Oct 2018 08:54:14 +0200 Subject: Cleanup Use inline semicolons rather then line feeds. --- ell.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ell.c b/ell.c index c386860..e984649 100644 --- a/ell.c +++ b/ell.c @@ -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) { -- cgit v1.2.3