Re: [PATCH v3 1/7] repo: add path.toplevel with absolute and relative suffix formatting
Junio C Hamano <[email protected]>
| Newsgroups | org.kernel.vger.git |
|---|---|
| Message-ID | <[email protected]> |
K Jayatheerth <[email protected]> writes: > +static int get_path_toplevel_absolute(struct repository *repo, struct strbuf *buf) > +{ > + const char *work_tree = repo_get_work_tree(repo); > + > + if (!work_tree) { > + strbuf_addstr(buf, ""); > + return 0; > + } > + > + format_path(buf, work_tree, startup_info->prefix, PATH_FORMAT_CANONICAL); > + return 0; > +} I can manage to wiggle it in, of course, but I thought we lost the '.prefix' member from 'startup_info' in the recent tip of 'master'. As the topic is not targeting 'maint' as a bugfix, perhaps we want to use a more up-to-date 'master' as the base of the topic? Thanks.