summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDevin Torres <devin@devintorr.es>2014-06-10 23:01:30 -0500
committerDevin Torres <devin@devintorr.es>2014-06-10 23:01:30 -0500
commit0610117f44b173a4e2112afb2f510156a32355b5 (patch)
treeb677ee333277f05e9d7580744586d25b3081f555
parente78e6edd3629bc2d2b32d0495d42bed3b88ea524 (diff)
downloadrust-hoedown-0610117f44b173a4e2112afb2f510156a32355b5.tar.gz
Don't use C99 features in header files
-rw-r--r--src/document.h2
-rw-r--r--src/html.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/document.h b/src/document.h
index d310933..217b0be 100644
--- a/src/document.h
+++ b/src/document.h
@@ -61,7 +61,7 @@ enum hoedown_extensions {
/* list/listitem flags */
enum hoedown_listflags {
HOEDOWN_LIST_ORDERED = (1 << 0),
- HOEDOWN_LI_BLOCK = (1 << 1), /* <li> containing block data */
+ HOEDOWN_LI_BLOCK = (1 << 1) /* <li> containing block data */
};
enum hoedown_tableflags {
diff --git a/src/html.h b/src/html.h
index ca1bd43..dbfde75 100644
--- a/src/html.h
+++ b/src/html.h
@@ -17,7 +17,7 @@ typedef enum {
HOEDOWN_HTML_EXPAND_TABS = (1 << 2),
HOEDOWN_HTML_SAFELINK = (1 << 3),
HOEDOWN_HTML_HARD_WRAP = (1 << 4),
- HOEDOWN_HTML_USE_XHTML = (1 << 5),
+ HOEDOWN_HTML_USE_XHTML = (1 << 5)
} hoedown_html_flags;
typedef enum {