Changeset 508 for trunk/thune/print.c
- Timestamp:
- 02/08/08 18:56:30 (10 months ago)
- Files:
-
- 1 modified
-
trunk/thune/print.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/thune/print.c
r469 r508 284 284 else if( braceType == UT_PAREN ) 285 285 append1( '(', out ); 286 #ifdef UR_CONFIG_MA RCOS286 #ifdef UR_CONFIG_MACROS 287 287 else if( braceType == UT_MACRO ) 288 append1( '<', out ); 288 { 289 append( out, "^(", 2 ); 290 braceType = UT_PAREN; 291 } 289 292 #endif 290 293 … … 319 322 else if( braceType == UT_PAREN ) 320 323 append1( ')', out ); 321 #ifdef UR_CONFIG_MARCOS322 else if( braceType == UT_MACRO )323 append1( '>', out );324 #endif325 324 } 326 325 … … 1184 1183 break; 1185 1184 1185 case UT_BLOCK: 1186 1186 case UT_PAREN: 1187 case UT_ BLOCK:1187 case UT_MACRO: 1188 1188 if( val->id.flags & UR_FLAG_PRINT_RECURSION ) 1189 1189 {
