Removed space from xpath canonical form of relex/unionex

This commit is contained in:
Olof hagsand 2021-07-24 16:43:47 +02:00
parent b1e5e8548a
commit 91313b31e0
2 changed files with 8 additions and 5 deletions

View file

@ -290,8 +290,11 @@ xpath_tree2cbuf(xpath_tree *xs,
switch (xs->xs_type){
case XP_AND: /* and or */
case XP_ADD: /* div mod + * - */
if (xs->xs_c1)
cprintf(xcb, " %s ", clicon_int2str(xpopmap, xs->xs_int));
break;
case XP_RELEX: /* !=, >= <= < > = */
case XP_UNION:
case XP_UNION: /* | */
if (xs->xs_c1)
cprintf(xcb, "%s", clicon_int2str(xpopmap, xs->xs_int));
break;