src/Pure/System/isabelle_process.ML
changeset 52582 31467a4b1466
parent 52580 36aa39694ab4
child 52583 0a7240d88e09
--- a/src/Pure/System/isabelle_process.ML	Wed Jul 10 21:54:43 2013 +0200
+++ b/src/Pure/System/isabelle_process.ML	Wed Jul 10 22:04:57 2013 +0200
@@ -48,15 +48,15 @@
 fun protocol_command name cmd =
   Synchronized.change commands (fn cmds =>
    (if not (Symtab.defined cmds name) then ()
-    else warning ("Redefining Isabelle process command " ^ quote name);
+    else warning ("Redefining Isabelle protocol command " ^ quote name);
     Symtab.update (name, cmd) cmds));
 
 fun run_command name args =
   (case Symtab.lookup (Synchronized.value commands) name of
-    NONE => error ("Undefined Isabelle process command " ^ quote name)
+    NONE => error ("Undefined Isabelle protocol command " ^ quote name)
   | SOME cmd =>
       (Runtime.debugging cmd args handle exn =>
-        error ("Isabelle process protocol failure: " ^ quote name ^ "\n" ^
+        error ("Isabelle protocol command failure: " ^ quote name ^ "\n" ^
           ML_Compiler.exn_message exn)));
 
 end;