lynx-dev
[Top][All Lists]
Advanced

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

Re: lynx-dev problem in Lynx Version 2.8.1dev.17


From: Leonid Pauzner
Subject: Re: lynx-dev problem in Lynx Version 2.8.1dev.17
Date: Tue, 14 Jul 1998 02:59:19 +0400 (MSD)

>      * From: address@hidden

> I like the new "verbose images" and "partial display" facilities.
>
> However I have found that if the partial display facility is turned on
> then the "lynx -dump" option crashes with
>
>         Segmentation fault
>
> I discovered that if I do
>
>         lynx -dump -partial
>
> then it works. I suspect this means that it should be a simple fix to


In LYMainLoop.c, near the line 500:
        "if (display_partial &&"...
we may need to add a check like !dump_output_immediately
(in fact, more general condition required).




#ifdef DISP_PARTIAL
                display_partial = display_partial_flag; /* reset */
                Newline_partial = newdoc.line; /* initialize */
                NumOfLines_partial = 0;        /* initialize */
                /*
                 *  Disable display_partial if requested URL has #fragment.
                 *  Otherwise user got the new document from the first page and
                 *  be moved to #fragment later after download completed, but
                 *  only if user did not mess screen up by scrolling before...
                 *  So fall down to old behavior here.
                 */
                if (display_partial && (strchr(newdoc.address, '#')==NULL))
                        display_partial = TRUE;
                else
                        display_partial = FALSE;
#endif /* DISP_PARTIAL */




> see if the "-dump" argument is supplied when partial mode is on, and
> turn it off?  (The "-partial" option is not yet in the man file.)
>
> It would be nice if there were an "o" accessibel Option for partial
> display that could be turned on and off while lynx is being used
> interactively.

Unfortunately, the Options menu limited in the size to fit one page...



reply via email to

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