lynx-dev
[Top][All Lists]
Advanced

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

Re: lynx-dev lynx2.8.1pre.8


From: Leonid Pauzner
Subject: Re: lynx-dev lynx2.8.1pre.8
Date: Mon, 5 Oct 1998 13:48:44 +0400 (MSD)

>      * From: Philip Webb <address@hidden>

> (1) quick'n'easy, mainly in  lynx.cfg :
>   (a) defaults need to be stated for `verbose' & `KB';
>   (b) GOTOBUFFER & JUMPBUFFER should default to TRUE;
>   (c) QUIT_DEFAULT_YES should default to FALSE
Most of commented out declarations in lynx.cfg correspons to default value,
send a patch if no.

> (3) bugs, perhaps not widely enough encountered to hold up 2-8-1:
>   (a) the Option Form refuses to write the new options to disk
>       if  .lynxrc  already exists: i sent in a trace without response;
It works for all of us.
Nothing special from trace, something on your side:
save_rc() cannot open rcfile and returns with FALSE.


PUBLIC int save_rc NOPARAMS
{
    char rcfile[LY_MAXPATH];
    FILE *fp;
    int i;
    int MBM_c;

    /*
     *  Make a name.
     */
    LYAddPathToHome(rcfile, sizeof(rcfile), FNAME_LYNXRC);

    /*
     *  Open the file for write.
     */
    if ((fp = LYNewTxtFile(rcfile)) == NULL) {
        return FALSE;
    }
...


reply via email to

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