tuned signature;
authorwenzelm
Fri, 27 Sep 2024 22:44:30 +0200
changeset 80982 7638776e0977
parent 80981 a594b5e922ad
child 80983 2cc651d3ce8e
tuned signature;
src/Pure/Syntax/parser.ML
--- a/src/Pure/Syntax/parser.ML	Fri Sep 27 22:36:00 2024 +0200
+++ b/src/Pure/Syntax/parser.ML	Fri Sep 27 22:44:30 2024 +0200
@@ -586,8 +586,8 @@
 fun get_states_lambda A min max =
   filter (head_nonterm (fn (B, p) => A = B andalso upto_prec min max p));
 
-fun get_states A max_prec =
-  filter (head_nonterm (fn (B, p) => A = B andalso p <= max_prec));
+fun get_states A max =
+  filter (head_nonterm (fn (B, p) => A = B andalso p <= max));
 
 fun movedot_nonterm tt (info, Nonterminal _ :: sa, ts) : state = (info, sa, tt @ ts);