Skip to content

Commit

Permalink
snapshot of project "lynx", label v2-8-9dev_15b
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasDickey committed Jul 5, 2017
1 parent 3c6d755 commit 280a61b
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 10 deletions.
4 changes: 3 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
-- $LynxId: CHANGES,v 1.910 2017/07/05 20:39:40 tom Exp $
-- $LynxId: CHANGES,v 1.911 2017/07/05 22:23:00 tom Exp $
===============================================================================
Changes since Lynx 2.8 release
===============================================================================

2017-07-05 (2.8.9dev.16)
* add a check to ensure that HTML_put_string() will not append a chunk onto
itself (report by Ned Williamson) -TD
* update et.po, tr.po from
http://translationproject.org/latest/lynx

Expand Down
2 changes: 1 addition & 1 deletion PACKAGE/debian/lynx-dev.lintian-overrides
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Lynx's version-numbering is not understood by lintian, though legal.
lynx-dev: rc-version-greater-than-expected-version 2.8.9dev.15 > 2.8.9 (consider using 2.8.9~dev.15)
lynx-dev: rc-version-greater-than-expected-version

# This is intentional because it is referenced from the documentation.
lynx-dev: extra-license-file usr/share/doc/lynx-dev/COPYING
Expand Down
27 changes: 19 additions & 8 deletions src/HTML.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* $LynxId: HTML.c,v 1.173 2017/07/04 20:05:01 tom Exp $
* $LynxId: HTML.c,v 1.174 2017/07/05 22:48:09 tom Exp $
*
* Structured stream to Rich hypertext converter
* ============================================
Expand Down Expand Up @@ -505,6 +505,8 @@ void HTML_put_character(HTStructured * me, int c)
*/
void HTML_put_string(HTStructured * me, const char *s)
{
HTChunk *target = NULL;

#ifdef USE_PRETTYSRC
char *translated_string = NULL;
#endif
Expand All @@ -525,15 +527,15 @@ void HTML_put_string(HTStructured * me, const char *s)
break; /* Do Nothing */

case HTML_TITLE:
HTChunkPuts(&me->title, s);
target = &me->title;
break;

case HTML_STYLE:
HTChunkPuts(&me->style_block, s);
target = &me->style_block;
break;

case HTML_SCRIPT:
HTChunkPuts(&me->script, s);
target = &me->script;
break;

case HTML_PRE: /* Formatted text */
Expand All @@ -547,20 +549,20 @@ void HTML_put_string(HTStructured * me, const char *s)
break;

case HTML_OBJECT:
HTChunkPuts(&me->object, s);
target = &me->object;
break;

case HTML_TEXTAREA:
HTChunkPuts(&me->textarea, s);
target = &me->textarea;
break;

case HTML_SELECT:
case HTML_OPTION:
HTChunkPuts(&me->option, s);
target = &me->option;
break;

case HTML_MATH:
HTChunkPuts(&me->math, s);
target = &me->math;
break;

default: /* Free format text? */
Expand Down Expand Up @@ -651,6 +653,15 @@ void HTML_put_string(HTStructured * me, const char *s)
} /* for */
}
} /* end switch */

if (target != NULL) {
if (target->data == s) {
CTRACE((tfp, "BUG: appending chunk to itself: `%.*s'\n",
target->size, target->data));
} else {
HTChunkPuts(target, s);
}
}
#ifdef USE_PRETTYSRC
if (psrc_convert_string) {
psrc_convert_string = FALSE;
Expand Down

0 comments on commit 280a61b

Please sign in to comment.