src/Pure/Thy/present.ML
changeset 59244 19b5fc4b2b38
parent 59210 8658b4290aed
child 59445 2c27c3d1fd3b
equal deleted inserted replaced
59243:21ef04bd4e17 59244:19b5fc4b2b38
   109 
   109 
   110 type browser_info =
   110 type browser_info =
   111  {theories: theory_info Symtab.table,
   111  {theories: theory_info Symtab.table,
   112   tex_index: (int * string) list,
   112   tex_index: (int * string) list,
   113   html_index: (int * string) list,
   113   html_index: (int * string) list,
   114   graph: Graph_Display.graph};
   114   graph: Graph_Display.entry list};
   115 
   115 
   116 fun make_browser_info (theories, tex_index, html_index, graph) : browser_info =
   116 fun make_browser_info (theories, tex_index, html_index, graph) : browser_info =
   117   {theories = theories, tex_index = tex_index, html_index = html_index, graph = graph};
   117   {theories = theories, tex_index = tex_index, html_index = html_index, graph = graph};
   118 
   118 
   119 val empty_browser_info = make_browser_info (Symtab.empty, [], [], []);
   119 val empty_browser_info = make_browser_info (Symtab.empty, [], [], []);