diff options
| author | Emilio Jesus Gallego Arias | 2017-11-19 03:27:46 +0100 |
|---|---|---|
| committer | Emilio Jesus Gallego Arias | 2017-11-19 03:28:53 +0100 |
| commit | d7a5f439de0208c4a543a81158107b8ccecb6ced (patch) | |
| tree | f600915d5c97799bb59fd370049cb5ecc55ae9eb | |
| parent | edf1a8f36f75861b822081b3825357e122b6937d (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.
| -rw-r--r-- | vernac/vernacinterp.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vernac/vernacinterp.ml b/vernac/vernacinterp.ml index 41fee6bd08..d2687161a1 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 = |
