src/Pure/System/options.scala
changeset 58868 c5e1cce7ace3
parent 56831 e3ccf0809d51
child 58908 58bedbc18915
equal deleted inserted replaced
58867:911addd19e9f 58868:c5e1cce7ace3
    74   private val PREFS_DIR = Path.explode("$ISABELLE_HOME_USER/etc")
    74   private val PREFS_DIR = Path.explode("$ISABELLE_HOME_USER/etc")
    75   private val PREFS = PREFS_DIR + Path.basic("preferences")
    75   private val PREFS = PREFS_DIR + Path.basic("preferences")
    76 
    76 
    77   lazy val options_syntax =
    77   lazy val options_syntax =
    78     Outer_Syntax.init() + ":" + "=" + "--" +
    78     Outer_Syntax.init() + ":" + "=" + "--" +
    79       (SECTION, Keyword.THY_HEADING2) + (PUBLIC, Keyword.THY_DECL) + (OPTION, Keyword.THY_DECL)
    79       (SECTION, Keyword.HEADING) + (PUBLIC, Keyword.THY_DECL) + (OPTION, Keyword.THY_DECL)
    80 
    80 
    81   lazy val prefs_syntax = Outer_Syntax.init() + "="
    81   lazy val prefs_syntax = Outer_Syntax.init() + "="
    82 
    82 
    83   object Parser extends Parse.Parser
    83   object Parser extends Parse.Parser
    84   {
    84   {