summaryrefslogtreecommitdiffstats
path: root/src/xplist.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/xplist.c')
-rw-r--r--src/xplist.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/xplist.c b/src/xplist.c
index 4438236..91b4645 100644
--- a/src/xplist.c
+++ b/src/xplist.c
@@ -243,16 +243,6 @@ static void node_to_xml(node_t* node, bytearray_t **outbuf, uint32_t depth)
str_buf_append(*outbuf, ">", 4);
start = cur+1;
break;
- case '\'':
- str_buf_append(*outbuf, node_data->strval + start, cur - start);
- str_buf_append(*outbuf, "'", 6);
- start = cur+1;
- break;
- case '"':
- str_buf_append(*outbuf, node_data->strval + start, cur - start);
- str_buf_append(*outbuf, """, 6);
- start = cur+1;
- break;
case '&':
str_buf_append(*outbuf, node_data->strval + start, cur - start);
str_buf_append(*outbuf, "&", 5);