Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions check/fixes.frm
Original file line number Diff line number Diff line change
Expand Up @@ -4437,6 +4437,15 @@ assert result("testCF1") =~ expr("putfirst_(f,2,mu1)*putfirst_(e,2,mu1)*putfirst
assert result("testCF2") =~ expr("d(mu2,mu1)*e(mu2,mu1)*f(mu2,mu1)")
assert result("testCF3") =~ expr("d(mu2,mu1,mu3)*e(mu2,mu1,mu3)*f(mu2,mu1,mu3)")
*--#] Issue750 :
*--#[ Issue760 :
ModuleOption foo1;
ModuleOption parallel,foo2;
ModuleOption foo3,parallel;
.end
assert preprocess_error?("Unrecognized module option: foo1")
assert preprocess_error?("Unrecognized module option: foo2")
assert preprocess_error?("Unrecognized module option: foo3")
*--#] Issue760 :
*--#[ Issue766 :
* Unintended "&" in some warning messages
CF f(s,s);
Expand Down
1 change: 1 addition & 0 deletions sources/module.c
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,7 @@ int CoModuleOption(UBYTE *s)
SKIPBLANKS(t)
if ( (option->func)(t) ) error = 1;
}
if ( error ) return(error);
if ( StrCmp((UBYTE *)(option->name),(UBYTE *)("polyfun")) == 0
|| StrCmp((UBYTE *)(option->name),(UBYTE *)("polyratfun")) == 0 ) {
polyflag = 1;
Expand Down
Loading