src/Pure/Thy/bibtex.scala
changeset 77218 86217697863c
parent 77148 9b3a8565464d
child 77219 a10161fbc6de
--- a/src/Pure/Thy/bibtex.scala	Mon Feb 06 16:26:40 2023 +0100
+++ b/src/Pure/Thy/bibtex.scala	Mon Feb 06 16:29:19 2023 +0100
@@ -703,7 +703,7 @@
   /* cite commands */
 
   def cite_commands(options: Options): List[String] =
-    Library.space_explode(',', options.string("document_cite_commands"))
+    space_explode(',', options.string("document_cite_commands"))
 
   val CITE = "cite"
   val NOCITE = "nocite"
@@ -828,7 +828,7 @@
       val location =
         if (loc.startsWith("[") && loc.endsWith("]")) loc.substring(1, loc.length - 1)
         else loc
-      val citations = Library.space_explode(',', m.group(3)).map(_.trim)
+      val citations = space_explode(',', m.group(3)).map(_.trim)
       Regex.quoteReplacement(cite_antiquotation(name, location, citations))
     })