Changeset a0da83 in git for Singular/fevoices.cc
- Timestamp:
- Mar 31, 2015, 3:36:56 PM (9 years ago)
- Branches:
- (u'spielwiese', 'a719bcf0b8dbc648b128303a49777a094b57592c')
- Children:
- 06cff955d56f17b8a3199fd8db5e3f4a6be98f35
- Parents:
- 56225c216f0df9632a02f7b745efacd6da070754
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/fevoices.cc
r56225c ra0da83 35 35 36 36 char fe_promptstr[] =" "; 37 FILE *File_Profiling=NULL; 37 38 38 39 // output/print buffer: … … 458 459 Print("{%d}",yylineno); 459 460 mflush(); 461 } 462 else if (traceit&TRACE_PROFILING) 463 { 464 if (File_Profiling==NULL) 465 File_Profiling=fopen("smon.out","a"); 466 if (File_Profiling==NULL) 467 traceit &= (~TRACE_PROFILING); 468 else 469 { 470 if (currentVoice->filename==NULL) 471 fprintf(File_Profiling,"(none) %d\n",yylineno); 472 else 473 fprintf(File_Profiling,"%s %d\n",currentVoice->filename,yylineno); 474 } 460 475 } 461 476 #ifdef HAVE_SDB
Note: See TracChangeset
for help on using the changeset viewer.