summaryrefslogtreecommitdiffstats
path: root/otherlibs/labltk/compiler/lexer.mll
diff options
context:
space:
mode:
Diffstat (limited to 'otherlibs/labltk/compiler/lexer.mll')
-rw-r--r--otherlibs/labltk/compiler/lexer.mll2
1 files changed, 1 insertions, 1 deletions
diff --git a/otherlibs/labltk/compiler/lexer.mll b/otherlibs/labltk/compiler/lexer.mll
index 92ff0921d..a2251b902 100644
--- a/otherlibs/labltk/compiler/lexer.mll
+++ b/otherlibs/labltk/compiler/lexer.mll
@@ -25,7 +25,7 @@ let current_line = ref 1
(* The table of keywords *)
-let keyword_table = (Hashtbl.create 149 : (string, token) Hashtbl.t)
+let keyword_table = (Hashtbl.create size:149 : (string, token) Hashtbl.t)
let _ = List.iter
fun:(fun (str,tok) -> Hashtbl.add keyword_table key:str data:tok)