Skip to content

Commit

Permalink
Avoid double parentheses.
Browse files Browse the repository at this point in the history
  • Loading branch information
frankluebeck committed Jun 21, 2022
1 parent cca1173 commit 7150a69
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lib/BibTeX.gi
Original file line number Diff line number Diff line change
Expand Up @@ -1084,9 +1084,8 @@ InstallGlobalFunction(StringBibAsText, function(arg)
Append(str, " edition");
continue;
elif field in ["note", "notes"] then
Append(str, ",\n (");
Append(str, ",\n ");
txt(field);
Append(str, ")");
continue;
elif field = "chapter" then
Append(str, ", Chapter ");
Expand Down

0 comments on commit 7150a69

Please sign in to comment.