From e987ea7249ffb0e269e3ffe3baeb4385b09b4060 Mon Sep 17 00:00:00 2001 From: hartbook <franck.dary@etu.univ-amu.fr> Date: Thu, 28 Jun 2018 10:09:57 +0200 Subject: [PATCH] Corrected a problem where context->fp was set when we didn't want it --- maca_trans_parser/src/maca_tm_decoder.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maca_trans_parser/src/maca_tm_decoder.c b/maca_trans_parser/src/maca_tm_decoder.c index e758825..ddf26dd 100644 --- a/maca_trans_parser/src/maca_tm_decoder.c +++ b/maca_trans_parser/src/maca_tm_decoder.c @@ -320,7 +320,7 @@ int main(int argc, char *argv[]) context *ctx = context_read_options(argc, argv); ctx->mode = TEST_MODE; maca_tm_decoder_check_options(ctx); - maca_tm_decoder_set_linguistic_resources_filenames(ctx); + //maca_tm_decoder_set_linguistic_resources_filenames(ctx); ctx->machine = tm_load(ctx->tm_filename, ctx->maca_data_path, ctx->verbose); mcd_link_to_dico(ctx->mcd_struct, ctx->machine->d_tapes, ctx->verbose); -- GitLab