소스 검색

Added comment about what to do with recursive parent storage.

default 3 년 전
부모
커밋
ce26879f2f
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      data.c

+ 2 - 0
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);