summaryrefslogtreecommitdiff
path: root/src/stmd.h
diff options
context:
space:
mode:
authorVicent Marti <tanoku@gmail.com>2014-09-02 13:30:13 +0200
committerVicent Marti <tanoku@gmail.com>2014-09-09 03:39:15 +0200
commit24248c0f1a6de6f229890c5c03aeff8738214fee (patch)
tree57dee9b9a4a21b279f160776aa3e876800bbd091 /src/stmd.h
parent582674e662d1f8757350c51486a5e0a837195e15 (diff)
Rename inlines
Diffstat (limited to 'src/stmd.h')
-rw-r--r--src/stmd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stmd.h b/src/stmd.h
index dc24235..1e490d6 100644
--- a/src/stmd.h
+++ b/src/stmd.h
@@ -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;