summaryrefslogtreecommitdiff
path: root/src/expr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/expr.c')
-rw-r--r--src/expr.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/expr.c b/src/expr.c
index c984279bc..f31ce0082 100644
--- a/src/expr.c
+++ b/src/expr.c
@@ -346,12 +346,12 @@ int name (l, r) VALUE *l; VALUE *r; \
else \
return l->u.i rel r->u.i; \
}
-cmpf (less_than, <)
-cmpf (less_equal, <=)
-cmpf (equal, ==)
-cmpf (not_equal, !=)
-cmpf (greater_equal, >=)
-cmpf (greater_than, >)
+ cmpf (less_than, <)
+ cmpf (less_equal, <=)
+ cmpf (equal, ==)
+ cmpf (not_equal, !=)
+ cmpf (greater_equal, >=)
+ cmpf (greater_than, >)
#undef cmpf
@@ -376,11 +376,11 @@ int name (l, r) VALUE *l; VALUE *r; \
return l->u.i op r->u.i; \
}
-arithf (plus, +)
-arithf (minus, -)
-arithf (multiply, *)
-arithdivf (divide, /)
-arithdivf (mod, %)
+ arithf (plus, +)
+ arithf (minus, -)
+ arithf (multiply, *)
+ arithdivf (divide, /)
+ arithdivf (mod, %)
#undef arithf
#undef arithdivf