Changeset 73c359d in git
- Timestamp:
- Oct 23, 2013, 2:10:59 PM (9 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
- Children:
- 040c71d18cf1ceef3eb6c497dc0b85f8df249d4f
- Parents:
- 41fbbadb86a5bd263ef892fae3804a80084aaa48
- git-author:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2013-10-23 14:10:59+02:00
- git-committer:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2013-10-23 14:14:54+02:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/newstruct.cc
r41fbba r73c359d 98 98 StringAppendS("<list>"); 99 99 } 100 else 100 else if (l->m[a->pos].rtyp<=MAX_TOK) 101 101 { 102 102 char *tmp2=omStrDup(l->m[a->pos].String()); 103 103 if ((strlen(tmp2)>80)||(strchr(tmp2,'\n')!=NULL)) 104 104 { 105 StringAppend("<%s>",Tok2Cmdname(l->m[a->pos].rtyp)); 105 StringAppendS("<"); 106 StringAppendS(Tok2Cmdname(l->m[a->pos].rtyp)); 107 StringAppendS(">"); 106 108 } 107 109 else StringAppendS(tmp2); 108 110 omFree(tmp2); 109 111 } 112 else 113 { 114 StringAppendS("<"); 115 StringAppendS(Tok2Cmdname(l->m[a->pos].rtyp)); 116 StringAppendS(">"); 117 } 118 110 119 } 111 120 else StringAppendS("??");
Note: See TracChangeset
for help on using the changeset viewer.