[Commits] [SCM] claws branch, master, updated. 3.10.1-115-gfa7987c
ticho at claws-mail.org
ticho at claws-mail.org
Mon Jun 30 08:30:13 CEST 2014
The branch master of project "claws" (Claws Mail) has been updated
via fa7987cbb02b09596019d1100604f16c08344528 (commit)
from 175213a5326a1f14b21f8b6aee89d55f086eca59 (commit)
Summary of changes:
src/plugins/rssyl/libfeed/parser_atom10.c | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
- Log -----------------------------------------------------------------
commit fa7987cbb02b09596019d1100604f16c08344528
Author: Andrej Kacian <andrej at kacian.sk>
Date: Mon Jun 30 08:29:44 2014 +0200
RSSyl: remove surplus semicolons from FILL macro use.
diff --git a/src/plugins/rssyl/libfeed/parser_atom10.c b/src/plugins/rssyl/libfeed/parser_atom10.c
index 2285477..c04e77c 100644
--- a/src/plugins/rssyl/libfeed/parser_atom10.c
+++ b/src/plugins/rssyl/libfeed/parser_atom10.c
@@ -152,9 +152,9 @@ void feed_parser_atom10_end(void *data, const gchar *el)
FILL(ctx->curitem->summary)
} else if( !strcmp(el, "content") ) {
if (!ctx->curitem->xhtml_content)
- FILL(ctx->curitem->text);
+ FILL(ctx->curitem->text)
} else if( !strcmp(el, "id") ) {
- FILL(ctx->curitem->id);
+ FILL(ctx->curitem->id)
feed_item_set_id_permalink(ctx->curitem, TRUE);
} else if( !strcmp(el, "published") ) {
ctx->curitem->date_published = parseISO8601Date(text);
@@ -176,7 +176,7 @@ void feed_parser_atom10_end(void *data, const gchar *el)
!ctx->name && !ctx->mail ? "N/A" : "");
ctx->location = FEED_LOC_ATOM10_ENTRY;
} else if( !strcmp(el, "name") ) {
- FILL(feed->author);
+ FILL(feed->author)
}
break;
@@ -194,9 +194,9 @@ void feed_parser_atom10_end(void *data, const gchar *el)
/* We're in feed/entry/author */
case FEED_LOC_ATOM10_AUTHOR:
if( !strcmp(el, "name") ) {
- FILL(ctx->name);
+ FILL(ctx->name)
} else if( !strcmp(el, "email") ) {
- FILL(ctx->mail);
+ FILL(ctx->mail)
}
break;
@@ -204,9 +204,9 @@ void feed_parser_atom10_end(void *data, const gchar *el)
/* We're in feed/entry/source */
case FEED_LOC_ATOM10_SOURCE:
if( !strcmp(el, "title" ) ) {
- FILL(ctx->curitem->sourcetitle);
+ FILL(ctx->curitem->sourcetitle)
} else if( !strcmp(el, "id" ) ) {
- FILL(ctx->curitem->sourceid);
+ FILL(ctx->curitem->sourceid)
} else if( !strcmp(el, "updated" ) ) {
ctx->curitem->sourcedate = parseISO8601Date(text);
}
@@ -215,7 +215,7 @@ void feed_parser_atom10_end(void *data, const gchar *el)
case FEED_LOC_ATOM10_CONTENT:
if (!strcmp(el, "div") && ctx->curitem->xhtml_content)
- FILL(ctx->curitem->text);
+ FILL(ctx->curitem->text)
break;
}
-----------------------------------------------------------------------
hooks/post-receive
--
Claws Mail
More information about the Commits
mailing list