[elinks-dev] Series of patches to improve elinks

2009-05-12 Thread yozohida
Hi, I started using elinks recently (moving from firefox + vimperator), and hacked together some patches to improve (?) elinks. Following messages are the patches. Most of the features are independent, but the patches themselves may be dependent on earlier patch. Patches are against the

[elinks-dev] [PATCH 01/10] Underline links even in numbered links mode.

2009-05-12 Thread yozohida
See bug #1076. --- src/document/html/renderer.c |9 - 1 files changed, 4 insertions(+), 5 deletions(-) diff --git a/src/document/html/renderer.c b/src/document/html/renderer.c index ec6c312..bfbd9c7 100644 --- a/src/document/html/renderer.c +++ b/src/document/html/renderer.c @@

[elinks-dev] [PATCH 02/10] Allow larger document.browse.margin_width.

2009-05-12 Thread yozohida
--- src/config/options.inc |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/config/options.inc b/src/config/options.inc index 4e4b255..f957669 100644 --- a/src/config/options.inc +++ b/src/config/options.inc @@ -449,7 +449,7 @@ static struct option_info

[elinks-dev] [PATCH 06/10] Keep forms in bold even when active.

2009-05-12 Thread yozohida
--- src/viewer/text/link.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/src/viewer/text/link.c b/src/viewer/text/link.c index eaa15f1..7cf3455 100644 --- a/src/viewer/text/link.c +++ b/src/viewer/text/link.c @@ -183,7 +183,8 @@ init_link_drawing(struct document_view

[elinks-dev] [PATCH 09/10] Add preferred_document_width option.

2009-05-12 Thread yozohida
Option document.browse.preferred_document_width controls the width of the document, so that documents are rendered with narrower width than screen width. Makes it easier to read paragraphs. Patch originally from Sharon Wood ds...@pele.cx, see bug #1063. Instead of using max_document_width as