summaryrefslogtreecommitdiff
path: root/src/commit2.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/commit2.c')
-rw-r--r--src/commit2.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/commit2.c b/src/commit2.c
index 35f609d..0d77fb6 100644
--- a/src/commit2.c
+++ b/src/commit2.c
@@ -309,10 +309,14 @@ process_func(GNode *node, gpointer data)
//look at parent for multi tag
if (d->_value && d->_name) {
+ char *val = d->_name;
+ if (c->_def.tag) { //need to handle the embedded multinode as a special case--should be fixed!
+ val = (char*)clind_unescape(d->_name);
+ }
if (g_debug) {
- printf("commit2::process_func(): @ value: %s\n",(char*)clind_unescape(d->_name));
+ printf("commit2::process_func(): @ value: %s\n",(char*)val);
}
- set_at_string((char*)clind_unescape(d->_name)); //embedded multinode value
+ set_at_string(val); //embedded multinode value
}
else {
if (g_debug) {