| 884 | } |
| 885 | |
| 886 | static LIST * apply_modifiers( STACK * s, int n ) |
| 887 | { |
| 888 | LIST * value = stack_top( s ); |
| 889 | LIST * result = L0; |
| 890 | VAR_EDITS * const edits = (VAR_EDITS *)( (LIST * *)stack_get( s ) + 1 ); |
| 891 | string buf[ 1 ]; |
| 892 | string_new( buf ); |
| 893 | result = apply_modifiers_impl( result, buf, edits, n, list_begin( value ), |
| 894 | list_end( value ) ); |
| 895 | string_free( buf ); |
| 896 | return result; |
| 897 | } |
| 898 | |
| 899 | |
| 900 | /* |
no test coverage detected