src/Pure/PIDE/command.ML
changeset 76424 ae62064849f0
parent 76418 2b0ff7c52aa4
child 76430 bb96846e27f8
--- a/src/Pure/PIDE/command.ML	Thu Nov 03 21:09:37 2022 +0100
+++ b/src/Pure/PIDE/command.ML	Fri Nov 04 11:11:40 2022 +0100
@@ -362,7 +362,7 @@
   make_print ("", [serial_string ()])
     {delay = NONE, pri = pri, persistent = true, strict = true, print_fn = print_fn};
 
-fun print command_visible command_overlays keywords command_name eval old_prints =
+fun print visible overlays keywords command_name eval old_prints =
   let
     val print_functions = Synchronized.value print_functions;
 
@@ -392,8 +392,8 @@
     val retained_prints =
       filter (fn print => print_finished print andalso print_persistent print) old_prints;
     val visible_prints =
-      if command_visible then
-        fold (fn (name, _) => cons (name, [])) print_functions command_overlays
+      if visible then
+        fold (fn (name, _) => cons (name, [])) print_functions overlays
         |> sort_distinct overlay_ord
         |> map_filter get_print
       else [];