author | wenzelm |
Tue, 14 Mar 2023 22:00:06 +0100 | |
changeset 77668 | 5cb7fd36223b |
parent 77667 | d15ad84d75f7 |
child 77669 | 8f96ac621bfd |
child 77671 | 8a6a79ed5a83 |
--- a/src/Pure/System/options.scala Tue Mar 14 21:01:20 2023 +0100 +++ b/src/Pure/System/options.scala Tue Mar 14 22:00:06 2023 +0100 @@ -460,7 +460,7 @@ (name, opt2) <- options.iterator opt1 = defaults.get(name) if (opt1.isEmpty || opt1.get.value != opt2.value) && filter(opt2) - } yield Options.Change(name, opt2.value, opt1.isEmpty)) + } yield Options.Change(name, opt2.value, opt1.isEmpty)).sortBy(_.name) }