version.c contains, among others the static char *(features[]) array that is intialized depending on the various HAVE_… macros: static char *(features[]) =
{
…
#ifdef FEAT_DIFF
"+diff",
#else
"-diff",
#endif
…
}
static int included_patches[] =
{
…
}
:intro command.