diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 2012-07-06 16:45:33 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 2012-07-06 16:45:33 +0000 |
commit | 1c7f208fbb857c359e75088ad430dbf588c29dea (patch) | |
tree | bdff72548188247f95ac03bd0b9eca74e019b142 | |
parent | 6d308ad574a7fb53175c4b0cf3950b52ff816eb1 (diff) |
PR#5671: initialization of compare_ext field in caml_final_custom_operations()
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@12659 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | byterun/custom.c | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -159,6 +159,7 @@ Bug Fixes: - PR#5620: invalid printing of type manifest (camlp4 revised syntax) - PR#5643: issues with .cfi and .loc directives generated by ocamlopt -g - PR#5661: fixes for the test suite +- PR#5671: initialization of compare_ext field in caml_final_custom_operations() - problem with printing of string literals in camlp4 (reported on caml-list) - emacs mode: colorization of comments and strings now works correctly diff --git a/byterun/custom.c b/byterun/custom.c index b2d7b5206..5f6e7f9a0 100644 --- a/byterun/custom.c +++ b/byterun/custom.c @@ -83,6 +83,7 @@ struct custom_operations * caml_final_custom_operations(final_fun fn) ops->hash = custom_hash_default; ops->serialize = custom_serialize_default; ops->deserialize = custom_deserialize_default; + ops->compare_ext = custom_compare_ext_default; l = caml_stat_alloc(sizeof(struct custom_operations_list)); l->ops = ops; l->next = custom_ops_final_table; |