diff options
| author | grunfink <grunfink@comam.es> | 2025-05-27 21:08:57 +0200 |
|---|---|---|
| committer | grunfink <grunfink@comam.es> | 2025-05-27 21:08:57 +0200 |
| commit | 631e44a64a20741b5e4716bf75caf7fa743fef82 (patch) | |
| tree | aa16d9443c75b81dd181b01cc136bb21d1476acd /data.c | |
| parent | 36d44ddd9e15e04ede93ef9914376ac4c9349122 (diff) | |
Renamed timeline_here() to timeline_here_by_md5(), as it always should have been.
Diffstat (limited to 'data.c')
| -rw-r--r-- | data.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1391,7 +1391,7 @@ xs_str *timeline_fn_by_md5(snac *snac, const char *md5) } -int timeline_here(snac *snac, const char *md5) +int timeline_here_by_md5(snac *snac, const char *md5) /* checks if an object is in the user cache */ { xs *fn = timeline_fn_by_md5(snac, md5); @@ -1515,7 +1515,7 @@ xs_list *timeline_top_level(snac *snac, const xs_list *list) break; /* well, there is a parent... but is it here? */ - if (!timeline_here(snac, line2)) + if (!timeline_here_by_md5(snac, line2)) break; /* it's here! try again with its own parent */ |