Peter Gervai <[EMAIL PROTECTED]> wrote Thu, Feb 24, 2005: > On Wed, 23 Feb 2005 23:56:57 +0100 > Jonas Fonseca <[EMAIL PROTECTED]> wrote: > > > Moritz Muehlenhoff <[EMAIL PROTECTED]> wrote Wed, Feb 23, 2005: > > > The update from 0.9.3 to 0.10.2 broke several of my bookmarks, I can't > > > select them with "Goto" anymore. It seems that only bookmarked URLs > > > without a trailing slash are affected, the one with a slash still work > > > fine. > > > > This has already been fixed in the unstable tree. I plan to backport and > > release it in 0.10.3 this weekend. > > If you send me a patch I'll apply it now, until it's released.
Very well, the requested patch is attached. -- Jonas Fonseca
elinks/src/bookmarks/bookmarks.c | 2 +- elinks/src/bookmarks/dialogs.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) Index: elinks/src/bookmarks/bookmarks.c diff -u elinks/src/bookmarks/bookmarks.c:1.158 elinks/src/bookmarks/bookmarks.c:1.159 --- elinks/src/bookmarks/bookmarks.c:1.158 Wed Jan 5 11:09:06 2005 +++ elinks/src/bookmarks/bookmarks.c Wed Feb 23 23:02:36 2005 @@ -551,7 +551,7 @@ || !*bookmark->url) continue; - uri = get_uri(bookmark->url, 0); + uri = get_translated_uri(bookmark->url, 0); if (!uri) continue; /* Save the first bookmark for the current tab */ Index: elinks/src/bookmarks/dialogs.c diff -u elinks/src/bookmarks/dialogs.c:1.195 elinks/src/bookmarks/dialogs.c:1.196 --- elinks/src/bookmarks/dialogs.c:1.195 Tue Dec 28 00:13:35 2004 +++ elinks/src/bookmarks/dialogs.c Wed Feb 23 23:02:36 2005 @@ -84,7 +84,7 @@ struct bookmark *bookmark = item->udata; return bookmark->url && *bookmark->url - ? get_uri(bookmark->url, 0) : NULL; + ? get_translated_uri(bookmark->url, 0) : NULL; } static struct listbox_item *