OLD | NEW |
(Empty) | |
| 1 %< |
| 2 asm (); |
| 3 %> |
| 4 |
| 5 %< -*- C -*- |
| 6 asm (); |
| 7 %> |
| 8 |
| 9 ---------------------------------------------------- |
| 10 |
| 11 [ |
| 12 ["inline-lang", [ |
| 13 ["delimiter", "%<"], |
| 14 ["keyword", "asm"], ["punctuation", "("], ["punctuation", ")"],
["punctuation", ";"], |
| 15 ["delimiter", "%>"] |
| 16 ]], |
| 17 |
| 18 ["inline-lang-c", [ |
| 19 ["delimiter", "%< "], |
| 20 ["lang", "-*- C -*-"], |
| 21 ["keyword", "asm"], ["punctuation", "("], ["punctuation", ")"],
["punctuation", ";"], |
| 22 ["delimiter", "%>"] |
| 23 ]] |
| 24 ] |
| 25 |
| 26 ---------------------------------------------------- |
| 27 |
| 28 Checks for C in Pure. |
OLD | NEW |