| 843 | } |
| 844 | |
| 845 | static LIST * apply_modifiers( STACK * s, int n ) |
| 846 | { |
| 847 | LIST * value = stack_top( s ); |
| 848 | LIST * result = L0; |
| 849 | VAR_EDITS * const edits = (VAR_EDITS *)( (LIST * *)stack_get( s ) + 1 ); |
| 850 | string buf[ 1 ]; |
| 851 | string_new( buf ); |
| 852 | result = apply_modifiers_impl( result, buf, edits, n, list_begin( value ), |
| 853 | list_end( value ) ); |
| 854 | string_free( buf ); |
| 855 | return result; |
| 856 | } |
| 857 | |
| 858 | |
| 859 | /* |
no test coverage detected