Deluge Script Editor Not Savings

Deluge Script Editor Not Savings

I am designing a custom related list and have saved one before but now i cant edit it nor add a new one! it stay stuck on savings and never saves? It doesn't even give an error?

void name()
{
crmResp = zoho.crm.searchRecords("CustomModule4","(Unique Address|=|" + input.uniqueaddr + ")");
allProductXmlData="<Products>";
rowVariable=1;
for each product in crmResp
{
apn=product.get("APN");
county=product.get("County");
psize=product.get("Property Size");
totaltaxes=product.get("Total Taxes Owed");
                nettoseller=product.get("Net to Seller");

ProductXmlData="<row no=\"" + rowVariable + "\"><FL val=\"APN\">" + apn + "</FL><FL val=\"County\">" + county + "</FL><FL val=\"Size\">" + psize + "</FL><FL val=\"Total Taxes Due\">" + totaltaxes + "</FL><FL val=\"Net To Seller\">" + nettoseller + "</FL></row>";
rowVariable=(rowVariable  +  1);
allProductXmlData=allProductXmlData + ProductXmlData;
}
allProductXmlData=allProductXmlData + "</Products>";
info allProductXmlData;
return allProductXmlData;
}