Hi, On Mon, 31 Jul 2006, Matthias Lederhofer wrote: > Signed-off-by: Matthias Lederhofer <matled@xxxxxxx> The commit message no longer reflects what the patch does ;-) > - const char *pager = getenv("PAGER"); > + char *pager; You do not need to lose the "const" (it means that you cannot access the memory it points to, but you can change the pointer). Also, you could make a more minimal patch by replacing PAGER by GIT_PAGER here, instead of having this extra line: > + pager = getenv("GIT_PAGER"); Ciao, Dscho - : send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html