Changeset fa50209 in git
- Timestamp:
- Mar 10, 2014, 5:52:19 PM (10 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 6b86f1c9b9ee948262dff876f5ec6f86992b4b33ab12db732777fc9ca1f9734d184c7e9d38ea9784
- Parents:
- 91dd8a5ef5bb06f9f51df16f59786c2ff90de8ca
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/subexpr.cc
r91dd8a5 rfa50209 1297 1297 if (e==NULL) return &attribute; 1298 1298 if ((rtyp==LIST_CMD) 1299 ||((rtyp==IDHDL)&&(IDTYP((idhdl)data)==LIST_CMD))) 1299 ||((rtyp==IDHDL)&&(IDTYP((idhdl)data)==LIST_CMD)) 1300 || (rtyp>MAX_TOK) 1301 || ((rtyp==IDHDL)&&(IDTYP((idhdl)data)>MAX_TOK))) 1300 1302 { 1301 1303 leftv v=LData(); … … 1310 1312 { 1311 1313 lists l=NULL; 1312 1313 if (rtyp==LIST_CMD) 1314 blackbox *b=getBlackboxStuff(rtyp); 1315 1316 if ((rtyp==LIST_CMD) 1317 || ((b!=NULL)&&(BB_LIKE_LIST(b)))) 1314 1318 l=(lists)data; 1315 1319 else if ((rtyp==IDHDL)&& (IDTYP((idhdl)data)==LIST_CMD)) 1316 1320 l=IDLIST((idhdl)data); 1321 else if ((rtyp==IDHDL)&& (IDTYP((idhdl)data)>MAX_TOK)) 1322 { 1323 b=getBlackboxStuff(IDTYP((idhdl)data)); 1324 if (BB_LIKE_LIST(b)) l=IDLIST((idhdl)data); 1325 } 1317 1326 else if (rtyp==ALIAS_CMD) 1318 1327 {
Note: See TracChangeset
for help on using the changeset viewer.