src/Pure/Thy/bibtex.scala
changeset 77368 7c57d9586f4c
parent 77219 a10161fbc6de
child 77369 df17355f1e2c
--- a/src/Pure/Thy/bibtex.scala	Fri Feb 24 20:23:48 2023 +0100
+++ b/src/Pure/Thy/bibtex.scala	Fri Feb 24 20:40:50 2023 +0100
@@ -813,7 +813,7 @@
 
   def cite_antiquotation(name: String, location: String, citations: List[String]): String = {
     val body =
-      (if (location.isEmpty) "" else Symbol.cartouche(location) + " in ") +
+      if_proper(location, Symbol.cartouche(location) + " in ") +
       citations.map(quote).mkString(" and ")
     cite_antiquotation(name, body)
   }