We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
(cad
1 parent 4734b52 commit 96d18e5Copy full SHA for 96d18e5
1 file changed
applications/utilities/dfFluent3DMeshToFoam/fluent3DMeshToFoam.L
@@ -694,6 +694,11 @@ endOfSection {space}")"{space}
694
yy_push_state(ignoreBlock);
695
}
696
697
+{lbrac}{alpha}[^ \t\n\r\f()]* {
698
+ // Handles scheme-style blocks with alphabetic names, e.g. (cad/adv-options ...)
699
+ yy_push_state(ignoreBlock);
700
+ }
701
+
702
<ignoreBlock,ignoreEmbeddedBlock>{space}{quote}{text}{quote} {
703
704
@@ -705,6 +710,15 @@ endOfSection {space}")"{space}
705
710
706
711
707
712
713
+<ignoreBlock,ignoreEmbeddedBlock>"[" {
714
+ // Handle Scheme-style square bracket blocks
715
+ yy_push_state(ignoreEmbeddedBlock);
716
717
718
+<ignoreBlock,ignoreEmbeddedBlock>"]" {
719
+ yy_pop_state();
720
721
708
722
<ignoreBlock,ignoreEmbeddedBlock>{space}{endOfSection} {
709
723
yy_pop_state();
724
0 commit comments