diff options
author | Vicent Marti <[email protected]> | 2014-09-02 13:30:13 +0200 |
---|---|---|
committer | Vicent Marti <[email protected]> | 2014-09-09 03:39:15 +0200 |
commit | 24248c0f1a6de6f229890c5c03aeff8738214fee (patch) | |
tree | 57dee9b9a4a21b279f160776aa3e876800bbd091 /src/stmd.h | |
parent | 582674e662d1f8757350c51486a5e0a837195e15 (diff) |
Rename inlines
Diffstat (limited to 'src/stmd.h')
-rw-r--r-- | src/stmd.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -12,8 +12,8 @@ typedef struct { } chunk; typedef struct Inline { - enum { str, softbreak, linebreak, code, raw_html, entity, - emph, strong, link, image } tag; + enum { INL_STRING, INL_SOFTBREAK, INL_LINEBREAK, INL_CODE, INL_RAW_HTML, INL_ENTITY, + INL_EMPH, INL_STRONG, INL_LINK, INL_IMAGE } tag; union { chunk literal; struct Inline *inlines; |