src/Pure/System/options.scala
changeset 69074 787f3db8e313
parent 69073 d05defa39e3d
child 69366 b6dacf6eabe3
--- a/src/Pure/System/options.scala	Wed Sep 26 22:07:35 2018 +0200
+++ b/src/Pure/System/options.scala	Wed Sep 26 22:38:16 2018 +0200
@@ -280,6 +280,9 @@
   }
   val string = new String_Access
 
+  def proper_string(name: String): Option[String] =
+    Library.proper_string(string(name))
+
   def seconds(name: String): Time = Time.seconds(real(name))
 
 
@@ -443,5 +446,8 @@
   }
   val string = new String_Access
 
+  def proper_string(name: String): Option[String] =
+    Library.proper_string(string(name))
+
   def seconds(name: String): Time = value.seconds(name)
 }