- Removed square brackets from latex termlist printing. This is however
still an issue for the knowledge print.
This commit is contained in:
parent
102ed11c66
commit
b865fa8f46
@ -159,10 +159,9 @@ latexTermlistPrint (Termlist tl, Termlist highlight)
|
||||
{
|
||||
if (tl == NULL)
|
||||
{
|
||||
printf ("[Empty]");
|
||||
printf ("\\emptyset");
|
||||
return;
|
||||
}
|
||||
printf ("[");
|
||||
while (tl != NULL)
|
||||
{
|
||||
latexTermPrint (tl->term, highlight);
|
||||
@ -170,7 +169,6 @@ latexTermlistPrint (Termlist tl, Termlist highlight)
|
||||
if (tl != NULL)
|
||||
printf (", ");
|
||||
}
|
||||
printf ("]");
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user