| OLD | NEW |
| 1 {% from "macros.tmpl" import license -%} | 1 {% from "macros.tmpl" import license %} |
| 2 {{ license() }} | 2 {{ license() }} |
| 3 | 3 |
| 4 #ifndef MediaFeatures_h | 4 #ifndef MediaFeatures_h |
| 5 #define MediaFeatures_h | 5 #define MediaFeatures_h |
| 6 | 6 |
| 7 #define CSS_MEDIAQUERY_NAMES_FOR_EACH_MEDIAFEATURE(macro) \ | 7 #define CSS_MEDIAQUERY_NAMES_FOR_EACH_MEDIAFEATURE(macro) \ |
| 8 {%- for entry in entries %} | 8 {% for entry in entries %} |
| 9 macro({{entry|symbol}}) {%- if not loop.last %}\{%-endif %} | 9 {# FIXME: add space before \ #} |
| 10 {%- endfor %} | 10 macro({{entry|symbol}}){% if not loop.last %}\ |
| 11 {% endif %} |
| 12 {% endfor %} |
| 13 {# FIXME: Remove extra blank line #} |
| 14 |
| 11 | 15 |
| 12 #endif | 16 #endif |
| OLD | NEW |