summaryrefslogtreecommitdiff
path: root/data.c
diff options
context:
space:
mode:
authordefault <nobody@localhost>2022-09-23 00:03:45 +0200
committerdefault <nobody@localhost>2022-09-23 00:03:45 +0200
commitce26879f2fd47a86eb69d1e59bb09a35b849c41c (patch)
tree356ca4f25ba52bc0f1a9c241df5eb243045ecb5f /data.c
parentb84267e4d3dc34c4a422f9be877246792c57ce87 (diff)
Added comment about what to do with recursive parent storage.
Diffstat (limited to 'data.c')
-rw-r--r--data.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/data.c b/data.c
index d6e8662..945051e 100644
--- a/data.c
+++ b/data.c
@@ -384,6 +384,8 @@ d_char *timeline_list(snac *snac)
void _timeline_parent(snac *snac, char *parent, char *child)
/* add child to parent's children list */
{
+ /* FIXME: this must be recursive, but *ONLY* for file renaming */
+
if (parent != NULL) {
xs *pfn = _timeline_find_fn(snac, parent);