Skip to content

Commit

Permalink
Postfix woes
Browse files Browse the repository at this point in the history
  • Loading branch information
infradig committed Feb 14, 2025
1 parent 29e5e19 commit af6aba4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/print.c
Original file line number Diff line number Diff line change
Expand Up @@ -1203,7 +1203,8 @@ static bool print_term_to_buf_(query *q, cell *c, pl_idx c_ctx, int running, int

SB_strcatn(q->sb, src, srclen);
if (quote) { SB_sprintf(q->sb, "%s", quote?"'":""); }
q->last_thing = WAS_OTHER;
if (q->last_thing != WAS_SPACE) { SB_sprintf(q->sb, "%s", " "); q->last_thing = WAS_SPACE; }
else q->last_thing = WAS_OTHER;
return true;
}

Expand Down

0 comments on commit af6aba4

Please sign in to comment.