summaryrefslogtreecommitdiff
path: root/src/html/html_meta_element.c
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@digital-scurf.org>2012-07-07 18:18:48 +0100
committerDaniel Silverstone <dsilvers@digital-scurf.org>2012-07-07 18:18:48 +0100
commite03978c667b83627073498ca34c61cf267934c41 (patch)
treeb00b2061b386fc929b08150870f208fee2bebacb /src/html/html_meta_element.c
parent890da96b1b601f622a12a7832c3cb654b146e693 (diff)
downloadlibdom-e03978c667b83627073498ca34c61cf267934c41.tar.gz
libdom-e03978c667b83627073498ca34c61cf267934c41.tar.bz2
HTML{Form,Link,Meta}Element: Tidy up SIMPLE_GET_SET
Diffstat (limited to 'src/html/html_meta_element.c')
-rw-r--r--src/html/html_meta_element.c58
1 files changed, 31 insertions, 27 deletions
diff --git a/src/html/html_meta_element.c b/src/html/html_meta_element.c
index 9cc8067..7a254e6 100644
--- a/src/html/html_meta_element.c
+++ b/src/html/html_meta_element.c
@@ -116,38 +116,42 @@ dom_exception _dom_html_meta_element_copy(dom_node_internal *old,
/*-----------------------------------------------------------------------*/
/* API functions */
-#define SIMPLE_GET_SET(fattr,attr) \
-dom_exception dom_html_meta_element_get_##fattr(dom_html_meta_element *element, \
- dom_string **fattr) \
-{ \
- dom_exception ret; \
- dom_string *_memo_##attr; \
+#define SIMPLE_GET_SET(attr) \
+ dom_exception dom_html_meta_element_get_##attr( \
+ dom_html_meta_element *element, \
+ dom_string **attr) \
+ { \
+ dom_exception ret; \
+ dom_string *_memo_##attr; \
\
- _memo_##attr = \
- ((struct dom_html_document *) \
- ((struct dom_node_internal *)element)->owner)->memoised[hds_##attr]; \
+ _memo_##attr = \
+ ((struct dom_html_document *) \
+ ((struct dom_node_internal *)element)->owner)->\
+ memoised[hds_##attr]; \
\
- ret = dom_element_get_attribute(element, _memo_##attr, fattr); \
+ ret = dom_element_get_attribute(element, _memo_##attr, attr); \
\
- return ret; \
-} \
+ return ret; \
+ } \
\
-dom_exception dom_html_meta_element_set_##fattr(dom_html_meta_element *element, \
- dom_string *fattr) \
-{ \
- dom_exception ret; \
- dom_string *_memo_##attr; \
+ dom_exception dom_html_meta_element_set_##attr( \
+ dom_html_meta_element *element, \
+ dom_string *attr) \
+ { \
+ dom_exception ret; \
+ dom_string *_memo_##attr; \
\
- _memo_##attr = \
- ((struct dom_html_document *) \
- ((struct dom_node_internal *)element)->owner)->memoised[hds_##attr]; \
+ _memo_##attr = \
+ ((struct dom_html_document *) \
+ ((struct dom_node_internal *)element)->owner)->\
+ memoised[hds_##attr]; \
\
- ret = dom_element_set_attribute(element, _memo_##attr, fattr); \
+ ret = dom_element_set_attribute(element, _memo_##attr, attr); \
\
- return ret; \
-}
+ return ret; \
+ }
-SIMPLE_GET_SET(content,content)
-SIMPLE_GET_SET(http_equiv,http_equiv)
-SIMPLE_GET_SET(name,name)
-SIMPLE_GET_SET(scheme,scheme)
+SIMPLE_GET_SET(content)
+SIMPLE_GET_SET(http_equiv)
+SIMPLE_GET_SET(name)
+SIMPLE_GET_SET(scheme)