summaryrefslogtreecommitdiffstats
path: root/color.c
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2022-03-25 13:53:47 -0400
committerTavian Barnes <tavianator@tavianator.com>2022-03-25 13:56:12 -0400
commit30e55d140074749809c419bba2a1a9fd1a4c7de9 (patch)
tree371d05089e2598d5503a2d49970d330eb210b83d /color.c
parent339be35aeec3492b895c7779ad4cc8562162dbee (diff)
downloadbfs-30e55d140074749809c419bba2a1a9fd1a4c7de9.tar.xz
expr: Store auxilliary data in a union
And rename struct expr to bfs_expr.
Diffstat (limited to 'color.c')
-rw-r--r--color.c24
1 files changed, 15 insertions, 9 deletions
diff --git a/color.c b/color.c
index 144e93c..ec4c178 100644
--- a/color.c
+++ b/color.c
@@ -1,6 +1,6 @@
/****************************************************************************
* bfs *
- * Copyright (C) 2015-2021 Tavian Barnes <tavianator@tavianator.com> *
+ * Copyright (C) 2015-2022 Tavian Barnes <tavianator@tavianator.com> *
* *
* Permission to use, copy, modify, and/or distribute this software for any *
* purpose with or without fee is hereby granted. *
@@ -868,12 +868,18 @@ BFS_FORMATTER(2, 3)
static int cbuff(CFILE *cfile, const char *format, ...);
/** Dump a parsed expression tree, for debugging. */
-static int print_expr(CFILE *cfile, const struct expr *expr, bool verbose) {
+static int print_expr(CFILE *cfile, const struct bfs_expr *expr, bool verbose) {
if (dstrcat(&cfile->buffer, "(") != 0) {
return -1;
}
- if (expr->lhs || expr->rhs) {
+ const struct bfs_expr *lhs = NULL;
+ const struct bfs_expr *rhs = NULL;
+
+ if (bfs_expr_has_children(expr)) {
+ lhs = expr->lhs;
+ rhs = expr->rhs;
+
if (cbuff(cfile, "${red}%s${rs}", expr->argv[0]) < 0) {
return -1;
}
@@ -901,20 +907,20 @@ static int print_expr(CFILE *cfile, const struct expr *expr, bool verbose) {
}
}
- if (expr->lhs) {
+ if (lhs) {
if (dstrcat(&cfile->buffer, " ") != 0) {
return -1;
}
- if (print_expr(cfile, expr->lhs, verbose) != 0) {
+ if (print_expr(cfile, lhs, verbose) != 0) {
return -1;
}
}
- if (expr->rhs) {
+ if (rhs) {
if (dstrcat(&cfile->buffer, " ") != 0) {
return -1;
}
- if (print_expr(cfile, expr->rhs, verbose) != 0) {
+ if (print_expr(cfile, rhs, verbose) != 0) {
return -1;
}
}
@@ -1007,12 +1013,12 @@ static int cvbuff(CFILE *cfile, const char *format, va_list args) {
break;
case 'e':
- if (print_expr(cfile, va_arg(args, const struct expr *), false) != 0) {
+ if (print_expr(cfile, va_arg(args, const struct bfs_expr *), false) != 0) {
return -1;
}
break;
case 'E':
- if (print_expr(cfile, va_arg(args, const struct expr *), true) != 0) {
+ if (print_expr(cfile, va_arg(args, const struct bfs_expr *), true) != 0) {
return -1;
}
break;