Browse Source

Fix a bug.

pre-master-46
Holger Vogt 5 months ago
parent
commit
6fc75e636c
  1. 2
      src/frontend/inpcom.c

2
src/frontend/inpcom.c

@ -3446,7 +3446,7 @@ static void inp_stripcomments_deck(struct card *c, bool cf)
found_control = TRUE;
if (ciprefix(".endc", c->line))
found_control = FALSE;
inp_stripcomments_line(c->line, found_control | cf, FALSE);
inp_stripcomments_line(c->line, found_control || cf, FALSE);
}
}

Loading…
Cancel
Save