diff --git a/maca_common/src/word.c b/maca_common/src/word.c index b6420932d994a9d343fe01651984a2dd53b87b02..e18a4b62733df149caba098ac72d094f2a0f9293 100644 --- a/maca_common/src/word.c +++ b/maca_common/src/word.c @@ -59,7 +59,8 @@ word *word_parse_buffer(char *buffer, mcd *mcd_struct) w = word_new(buffer); token = strtok(buffer, "\t"); do{ - if((col < mcd_struct->nb_col) && (mcd_struct->wf[col] != -1) && (strcmp(token, "_"))){ + /* if((col < mcd_struct->nb_col) && (mcd_struct->wf[col] != -1) && (strcmp(token, "_"))){ */ + if((col < mcd_struct->nb_col) && (mcd_struct->wf[col] != -1)){ w->wf_array[mcd_struct->wf[col]] = mcd_get_code(mcd_struct, token, col); } if(mcd_struct->wf[col] == MCD_WF_FORM){