euphoria

changeset 5097:63a7318ec029 struct

* merge trunk into struct branch
author Matt Lewis
date Fri Aug 05 08:14:15 2011 -0400 (21 months ago)
parents 9279744862aa b4a1d6b210c6
children 2bdc4502d7de
files source/be_rterror.c
line diff
     1.1 --- a/docs/release/4.0.4.txt	Thu Aug 04 17:04:20 2011 -0400
     1.2 +++ b/docs/release/4.0.4.txt	Fri Aug 05 08:14:15 2011 -0400
     1.3 @@ -11,6 +11,7 @@
     1.4  * [[ticket:681]] fixed error reporting when the error is the last symbol on a line, but that might be part of
     1.5    and expression that carries over to the next line
     1.6  * [[ticket:694]] do not short circuit inside of forward function calls
     1.7 +* [[ticket:699]] Include public and export symbols in ex.err output
     1.8  
     1.9  === Enhancements
    1.10  
     2.1 --- a/source/be_rterror.c	Thu Aug 04 17:04:20 2011 -0400
     2.2 +++ b/source/be_rterror.c	Fri Aug 05 08:14:15 2011 -0400
     2.3 @@ -1056,11 +1056,12 @@
     2.4  
     2.5  	prev_file_no = -1;
     2.6  	sym = TopLevelSub->next;
     2.7 -	iprintf(f, "\n\nGlobal & Local Variables\n");
     2.8 +	iprintf(f, "\n\nPublic & Export & Global & Local Variables\n");
     2.9  	while (sym != NULL) {
    2.10  		if (sym->token == VARIABLE && 
    2.11  			sym->mode == M_NORMAL &&
    2.12  			(sym->scope == S_LOCAL || sym->scope == S_GLOBAL ||
    2.13 +			 sym->scope == S_PUBLIC || sym->scope == S_EXPORT ||
    2.14  			 sym->scope == S_GLOOP_VAR)) {
    2.15  			if (sym->file_no != prev_file_no) {
    2.16  				prev_file_no = sym->file_no;

SCM Home | OpenEuphoria.org Home