On Fri, Jan 3, 2020 at 11:48 AM Junio C Hamano <gitster@xxxxxxxxx> wrote: > > Junio C Hamano <gitster@xxxxxxxxx> writes: > > A side note. > > Right now, the advise() API is a bit awkweard to use correctly. > When introducing a new advice message, you would > > * come up with advice.frotz configuration variable > > * define and declare advice_frotz global variable that defaults to > true > > * sprinkle calls like this: > > if (advice_frotz) > advise(_("helpful message about frotz")); > > I am wondering about two things: > > (1) if we can update the API so that the above can be reduced to > just adding calls like: > > advise_ng("frotz", _("helpful message about frotz")); > > (2) if such a simplified advise_ng API is a good idea to begin > with. > That's a valid suggestion, I can investigate that in a new patch, I'd rather keep this one as simple as calling the existing advise function. Thanks, Heba