lynx-dev
[Top][All Lists]
Advanced

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

Re: lynx-dev follow-link bug


From: Laura Eaves
Subject: Re: lynx-dev follow-link bug
Date: Thu, 4 Mar 1999 13:21:46 -0500 (EST)

The following patchlet makes sure 123 with no suffix is handled correctly.
Patch against dev19.
Actually, remember that typing 123 will follow link 123
without repositioning the current link.  So be sure that's what you expect.
--le

Index: LYForms.c
--- old/LYForms.c       Thu Mar  4 03:39:46 1999
+++ src/LYForms.c       Thu Mar  4 13:10:16 1999
@@ -552,6 +552,8 @@
     default:
        *c = *p++;
        *rel = *p;
+    case 0:
+       break;
     }
 
     /*
Index: LYGetFile.c
--- old/LYGetFile.c     Thu Mar  4 03:39:46 1999
+++ src/LYGetFile.c     Thu Mar  4 13:07:45 1999
@@ -972,6 +972,8 @@
        break;
     default:
        rel = *++p;
+    case 0:
+       break;
     }
     /* don't currently check for errors typing suffix */
 

reply via email to

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