lynx-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: LYNX-DEV strange warning with version 0.98


From: Nelson Henry Eric
Subject: Re: LYNX-DEV strange warning with version 0.98
Date: Sat, 6 Dec 1997 09:45:46 +0900 (JST)

> series of comments
> :
> #define LYNX_CFG_FILE "/projects/sprs_lwv/lib/lynx/lynx.cfg"
> #ifndef LYNX_CFG_FILE
> #ifdef DOSPATH
> #define LYNX_CFG_FILE "./lynx.cfg"
> #else
> #define LYNX_CFG_FILE "/usr/local/lib/lynx.cfg"
> #endif /* DOSPATH */
> #endif /* LYNX_CFG_FILE */

Isn't the third line quoted above spurious?

I'd recommend:
 * mailcap files (see the examples in the samples directory).
 */
#ifndef LYNX_CFG_FILE
#ifdef DOSPATH
#define LYNX_CFG_FILE "./lynx.cfg"
#else
#define LYNX_CFG_FILE "/projects/sprs_lwv/lib/lynx/lynx.cfg"
#endif /* DOSPATH */
#endif /* LYNX_CFG_FILE */

/**************************

__Henry

reply via email to

[Prev in Thread] Current Thread [Next in Thread]