clarified signature, notably for hol4isabelle (by Fabian Immler);
authorwenzelm
Sun, 24 Feb 2019 20:44:17 +0100
changeset 69841 b3c9291b5fc7
parent 69840 a35033167f01
child 69842 9a7f94ab4df9
clarified signature, notably for hol4isabelle (by Fabian Immler);
src/Pure/ML/ml_lex.ML
--- a/src/Pure/ML/ml_lex.ML	Sun Feb 24 13:00:43 2019 +0100
+++ b/src/Pure/ML/ml_lex.ML	Sun Feb 24 20:44:17 2019 +0100
@@ -34,6 +34,7 @@
     token Antiquote.antiquote Symbol_Pos.scanner -> Input.source -> token Antiquote.antiquote list
   val read_source: Input.source -> token Antiquote.antiquote list
   val read_source_sml: Input.source -> token Antiquote.antiquote list
+  val read_symbols_sml: Symbol_Pos.T list -> token Antiquote.antiquote list
 end;
 
 structure ML_Lex: ML_LEX =
@@ -383,6 +384,8 @@
   read_source' {language = Markup.language_SML, symbols = false, opaque_warning = false}
     scan_sml_antiq;
 
+val read_symbols_sml = reader {opaque_warning = false} scan_sml_antiq;
+
 end;
 
 end;