lynx-dev
[Top][All Lists]
Advanced

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

Re: lynx-dev mail


From: Leonid Pauzner
Subject: Re: lynx-dev mail
Date: Sun, 7 Feb 1999 22:25:55 +0300 (MSK)

7-Feb-99 18:52 Josef Eschgfaeller wrote:

> I use very often the mail-to option (p key) for receiving search results
> as e-mail. Rather regulary lynx exits with error 11 after 2-3 times,
> perhaps especially if the files are big.
> This happens with 2.8.1pre9 on Linux and 2.8.1 on Digital Alpha.

This was a bug introduced in 2.8.1pre.2 and fixed after 2.8.1 release (sorry),
try current development version which looks more succesful for many reasons.

If you have old sources by hand you may fix LYPrint.c yourself:
in subject_translate8bit()
change
        return(source);
to
        StrAllocCopy(target, source);
        return(target); /* OK */


current version says:
PRIVATE char* subject_translate8bit ARGS1(char *, source)
{
    CONST char *p = source;
    char temp[2];
    char *target = NULL;

    int charset_in, charset_out;
    char replace_buf [10];

    int i = outgoing_mail_charset;  /* from lynx.cfg, -1 by default */

    if (i < 0
     || LYHaveCJKCharacterSet
     || LYCharSet_UC[i].enc == UCT_ENC_CJK) {
        StrAllocCopy(target, source);
        return(target); /* OK */
    } else {
[...]


> Thanks for help.

> Josef Eschgfaeller
> Dipartimento Matematico
> Universita' di Ferrara
> address@hidden        e-mail
> http://felix.unife.it/    home page




reply via email to

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