src/Pure/PIDE/document.ML
changeset 38419 f9dc924e54f8
parent 38418 9a7af64d71bb
child 38421 6cfc6fce7bfb
--- a/src/Pure/PIDE/document.ML	Sun Aug 15 18:41:23 2010 +0200
+++ b/src/Pure/PIDE/document.ML	Sun Aug 15 19:30:11 2010 +0200
@@ -12,7 +12,7 @@
   type command_id = id
   type exec_id = id
   val no_id: id
-  val create_id: unit -> id
+  val new_id: unit -> id
   val parse_id: string -> id
   val print_id: id -> string
   type edit = string * ((command_id * command_id option) list) option
@@ -38,7 +38,7 @@
 local
   val id_count = Synchronized.var "id" 0;
 in
-  fun create_id () =
+  fun new_id () =
     Synchronized.change_result id_count
       (fn i =>
         let val i' = i + 1
@@ -243,7 +243,7 @@
 fun new_exec name (id: command_id) (exec_id, updates, state) =
   let
     val exec = the_exec state exec_id;
-    val exec_id' = create_id ();
+    val exec_id' = new_id ();
     val tr = Toplevel.put_id (print_id exec_id') (the_command state id);
     val exec' =
       Lazy.lazy (fn () =>