src/Pure/Isar/outer_syntax.ML
changeset 69289 bf6937af7fe8
parent 68729 3a02b424d5fb
child 69575 f77cc54f6d47
--- a/src/Pure/Isar/outer_syntax.ML	Mon Nov 12 14:02:33 2018 +0100
+++ b/src/Pure/Isar/outer_syntax.ML	Mon Nov 12 15:14:12 2018 +0100
@@ -293,15 +293,14 @@
       in name end
     else
       let
-        val completion =
-          Completion.make (name, pos)
+        val completion_report =
+          Completion.make_report (name, pos)
             (fn completed =>
               Keyword.dest_commands keywords
               |> filter completed
               |> sort_strings
               |> map (fn a => (a, (Markup.commandN, a))));
-        val report = Markup.markup_report (Completion.reported_text completion);
-      in error ("Bad command " ^ quote name ^ Position.here pos ^ report) end
+      in error ("Bad command " ^ quote name ^ Position.here pos ^ completion_report) end
   end;