Skip to content

Commit

Permalink
Merge pull request #2714 from triska/graphic_token
Browse files Browse the repository at this point in the history
prevent accidental amalgamation of graphic token chars in output
  • Loading branch information
mthom authored Dec 21, 2024
2 parents e01a4cd + 8dc80b8 commit b794383
Showing 1 changed file with 19 additions and 3 deletions.
22 changes: 19 additions & 3 deletions src/lib/format.pl
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,23 @@

literal(Lit, VNs) -->
{ write_term_to_chars(Lit, [quoted(true),variable_names(VNs),double_quotes(true)], Ls) },
seq(Ls).
( { nonvar(Lit),
functor(Lit, F, A),
current_op(Pri, _, F),
( A =:= 0
; Pri >= 1000
) } ->
"(", seq(Ls), ")"
; seq(Ls)
).

literal_(Lit, VNs) -->
{ phrase(literal(Lit, VNs), Ls) },
seq(Ls),
( { phrase((...,[Last]), Ls), char_type(Last, graphic_token) } ->
" "
; ""
).

portray_(Var, VNs) --> { var(Var) }, !, literal(Var, VNs).
portray_((Head :- Body), VNs) --> !,
Expand All @@ -602,7 +618,7 @@
portray_((Head --> Body), VNs) --> !,
literal(Head, VNs), " -->\n",
body_(Body, 0, 3, VNs).
portray_(Any, VNs) --> literal(Any, VNs).
portray_(Any, VNs) --> literal_(Any, VNs).


body_(Var, C, I, VNs) --> { var(Var) }, !,
Expand All @@ -627,7 +643,7 @@
body_(A, C1, C1, VNs), "\n",
else_branch(B, I, VNs).
body_(Goal, C, I, VNs) -->
indent_to(C, I), literal(Goal, VNs).
indent_to(C, I), literal_(Goal, VNs).


% True iff Body has the shape ( If -> Then ; Else ).
Expand Down

0 comments on commit b794383

Please sign in to comment.