aboutsummaryrefslogtreecommitdiffhomepage
path: root/vernac/vernacinterp.ml
diff options
context:
space:
mode:
authorGravatar Emilio Jesus Gallego Arias <e+git@x80.org>2017-11-19 03:27:46 +0100
committerGravatar Emilio Jesus Gallego Arias <e+git@x80.org>2017-11-19 03:28:53 +0100
commitd7a5f439de0208c4a543a81158107b8ccecb6ced (patch)
treef600915d5c97799bb59fd370049cb5ecc55ae9eb /vernac/vernacinterp.ml
parentedf1a8f36f75861b822081b3825357e122b6937d (diff)
[vernac] Increase table size.
As of Nov 2017, the standard number of entries is 85, it easily goes up with some other plugins, so 211 seems like a good compromise.
Diffstat (limited to 'vernac/vernacinterp.ml')
-rw-r--r--vernac/vernacinterp.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/vernac/vernacinterp.ml b/vernac/vernacinterp.ml
index 41fee6bd0..d2687161a 100644
--- a/vernac/vernacinterp.ml
+++ b/vernac/vernacinterp.ml
@@ -15,7 +15,7 @@ type vernac_command = Genarg.raw_generic_argument list -> Loc.t option -> unit
(* Table of vernac entries *)
let vernac_tab =
- (Hashtbl.create 51 :
+ (Hashtbl.create 211 :
(Vernacexpr.extend_name, deprecation * vernac_command) Hashtbl.t)
let vinterp_add depr s f =