diff options
-rw-r--r-- | cal.lua | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -327,7 +327,11 @@ local calendar_of_lines do if curname == "begin" then if stringlower (curvalue) == "vcalendar" then - acc = { value = { } } + --- this is a root object + acc = + { value = { } + , name = "root" + } end local ok, nn, ret = process (lines, n + 1, |