diff -r a35033167f01 -r b3c9291b5fc7 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;