diff options
| author | Emilio Jesus Gallego Arias | 2018-11-05 18:51:30 +0100 |
|---|---|---|
| committer | Emilio Jesus Gallego Arias | 2018-11-05 18:51:30 +0100 |
| commit | efe60d3c1b09bc059053b7383e068ddc05248dac (patch) | |
| tree | cef40d35eb429346ab6649ce9d4985990a337623 /vernac | |
| parent | 56a654cc248b2be6e85b7f8f8f88efe289c704d5 (diff) | |
| parent | b255fe1699be4e5dc067c23c92239ad1c67424f9 (diff) | |
Merge PR #8899: Remove the deprecated Token module and port the corresponding code.
Diffstat (limited to 'vernac')
| -rw-r--r-- | vernac/explainErr.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vernac/explainErr.ml b/vernac/explainErr.ml index b37fce645a..e6803443b3 100644 --- a/vernac/explainErr.ml +++ b/vernac/explainErr.ml @@ -29,7 +29,7 @@ exception EvaluatedError of Pp.t * exn option let explain_exn_default = function (* Basic interaction exceptions *) | Stream.Error txt -> hov 0 (str "Syntax error: " ++ str txt ++ str ".") - | Token.Error txt -> hov 0 (str "Syntax error: " ++ str txt ++ str ".") + | Plexing.Error txt -> hov 0 (str "Syntax error: " ++ str txt ++ str ".") | CLexer.Error.E err -> hov 0 (str (CLexer.Error.to_string err)) | Sys_error msg -> hov 0 (str "System error: " ++ guill msg) | Out_of_memory -> hov 0 (str "Out of memory.") |
