Thomas Dickey <[EMAIL PROTECTED]> said:

> On Tue, May 23, 2000 at 02:08:44PM +0200, Gisle Vanem wrote:
> > A command line like "lynx - < file" where file contains an URL no
> > longer work in the DOS/djgpp of 2.8.4dev.2.
>
> I'm puzzled by this, because I don't see how it could have worked before
> either.

The "lynx -< file" method works with this diff for LYmain.c at around
line 1120:

        while (LYSafeGets(&buf, stdin) != 0) {
            char *noargv[2];

            noargv[0] = buf;
            noargv[1] = NULL;
            LYTrimTrailing(buf);

+           if (buf[0] != '-' ||
+               (buf[0] != '\0' && parse_arg(&noargv[0], 2, (int*)0) == FALSE)) {
-           if (parse_arg(&noargv[0], 2, (int*)0) == FALSE)
-              && buf[0] != '\0') {
                char *argument = NULL;

Without knowing what this could break, I'll leave it to others to integrate
it.

(sorry, no diffs against the official version cause I've done my private
changes too).

Gisle V.


; To UNSUBSCRIBE: Send "unsubscribe lynx-dev" to [EMAIL PROTECTED]

Reply via email to