We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c70a85f commit c5f6faaCopy full SHA for c5f6faa
1 file changed
sources/module.c
@@ -502,7 +502,14 @@ Error2:;
502
AR.PolyFunExp = 0;
503
AC.PolyRatFunChanged = 1;
504
*t = c;
505
- if ( *t == '+' ) {
+ if ( *t == '+' || *t == ',' ) {
506
+ if ( *t == ',' ) {
507
+ /*
508
+ * Somehow "+" is not checked by CoModuleOption, and the word
509
+ * after "+" is ignored. We take advantage of this.
510
+ */
511
+ *t = '+';
512
+ }
513
t++; s = t;
514
t = EndOfToken(s);
515
c = *t; *t = 0;
0 commit comments