[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: LYNX-DEV charsets
From: |
Foteos Macrides |
Subject: |
Re: LYNX-DEV charsets |
Date: |
Tue, 15 Jul 1997 16:55:14 -0500 (EST) |
Ricardas Cepas <address@hidden> wrote:
>[...]
> Another minor problem: lynx.cfg is only read with
>-cfg option though it is in userdefs.h:
>#define LYNX_CFG_FILE "/usr/local/etc/lynx.cfg"
>and the same pathname is in lynx binary.
You must be using the development code set. In it's src/LYMain.c
find:
/* If we still have no config file, check one in home directory */
if (NULL == lynx_cfg_file)
{
temp = make_homedir_lynxrc_filename (NULL);
if (temp != NULL)
{
if (NULL != (fp = fopen (temp, "r")))
{
fclose (fp);
StrAllocCopy (lynx_cfg_file, temp);
}
FREE(temp);
}
}
and delete it. Search the lynx-dev archives for more information about
this.
Fote
=========================================================================
Foteos Macrides Worcester Foundation for Biomedical Research
address@hidden 222 Maple Avenue, Shrewsbury, MA 01545
=========================================================================
;
; To UNSUBSCRIBE: Send a mail message to address@hidden
; with "unsubscribe lynx-dev" (without the
; quotation marks) on a line by itself.
;
Re: LYNX-DEV charsets, Ricardas Cepas, 1997/07/17
- Re: LYNX-DEV charsets,
Foteos Macrides <=