Re: error module should depend on progname

2013-11-21 Thread Paul Eggert
On 11/21/2013 12:52 PM, Nikos Mavrogiannopoulos wrote: > does xalloc-die really > needs to report using error()? xalloc-die is for use by standalone programs which desire a particular standard way of handling memory exhaustion, namely a diagnostic and nonzero exit status like this: $ od -S 115

Re: error module should depend on progname

2013-11-21 Thread Paul Eggert
Thanks, but the file doc/error.texi explains why the error module does not depend on the progname module.

Re: error module should depend on progname

2013-11-21 Thread Nikos Mavrogiannopoulos
On Thu, 2013-11-21 at 12:08 -0800, Paul Eggert wrote: > Thanks, but the file doc/error.texi explains why the error module > does not depend on the progname module. Hello, My main issue is that I don't use error() and I have issues with it because some module (xalloc-die) uses it. In fact does xal