src/Pure/System/options.scala
changeset 60215 5fb4990dfc73
parent 60133 a90982bbe8b4
child 61579 634cd44bb1d3
--- a/src/Pure/System/options.scala	Fri May 01 15:33:43 2015 +0200
+++ b/src/Pure/System/options.scala	Sun May 03 00:01:10 2015 +0200
@@ -368,7 +368,7 @@
       (for {
         (name, opt2) <- options.iterator
         opt1 = defaults.options.get(name)
-        if (opt1.isEmpty || opt1.get.value != opt2.value)
+        if opt1.isEmpty || opt1.get.value != opt2.value
       } yield (name, opt2.value, if (opt1.isEmpty) "  (* unknown *)" else "")).toList
 
     val prefs =
@@ -429,4 +429,3 @@
   }
   val seconds = new Seconds_Access
 }
-