mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-25 22:45:05 +00:00
Added comment about what to do with recursive parent storage.
This commit is contained in:
parent
b84267e4d3
commit
ce26879f2f
1 changed files with 2 additions and 0 deletions
2
data.c
2
data.c
|
@ -384,6 +384,8 @@ d_char *timeline_list(snac *snac)
|
||||||
void _timeline_parent(snac *snac, char *parent, char *child)
|
void _timeline_parent(snac *snac, char *parent, char *child)
|
||||||
/* add child to parent's children list */
|
/* add child to parent's children list */
|
||||||
{
|
{
|
||||||
|
/* FIXME: this must be recursive, but *ONLY* for file renaming */
|
||||||
|
|
||||||
if (parent != NULL) {
|
if (parent != NULL) {
|
||||||
xs *pfn = _timeline_find_fn(snac, parent);
|
xs *pfn = _timeline_find_fn(snac, parent);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue