proper orientation for right-associative operations;
authorwenzelm
Mon, 06 Feb 2023 21:31:49 +0100
changeset 77219 a10161fbc6de
parent 77218 86217697863c
child 77220 35a05e61c7b4
proper orientation for right-associative operations;
src/Pure/Thy/bibtex.scala
--- a/src/Pure/Thy/bibtex.scala	Mon Feb 06 16:29:19 2023 +0100
+++ b/src/Pure/Thy/bibtex.scala	Mon Feb 06 21:31:49 2023 +0100
@@ -202,7 +202,7 @@
     override def toString: String = "Bibtex.Entries(" + entries.length + ")"
 
     def ::: (other: Entries): Entries =
-      new Entries(entries ::: other.entries, errors ::: other.errors)
+      new Entries(other.entries ::: entries, other.errors ::: errors)
   }
 
   object Session_Entries extends Scala.Fun("bibtex_session_entries") {