1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-08-20 20:54:47 -04:00

DOM, ecmascript: removed superflous assignments.

This commit is contained in:
Witold Filipczyk 2007-06-16 18:45:54 +02:00 committed by Witold Filipczyk
parent b28eeb8a38
commit b2b4e67e0d
3 changed files with 7 additions and 7 deletions

View File

@ -219,7 +219,7 @@ register_form_element(struct dom_node *node)
if (html) {
html->form = form;
data->elements = add_to_dom_node_list(&data->elements, node, -1);
add_to_dom_node_list(&data->elements, node, -1);
}
}
}

View File

@ -317,7 +317,7 @@ make_TABLE_object(JSContext *ctx, struct dom_node *node)
/* Alloc node for implicit tbody element. */
tbody = mem_calloc(1, sizeof(*tbody));
if (tbody) {
t->tbodies = add_to_dom_node_list(&t->tbodies, tbody, -1);
add_to_dom_node_list(&t->tbodies, tbody, -1);
if (!t->tbodies)
mem_free(tbody);
tbody->parent = node;
@ -383,7 +383,7 @@ register_row(struct dom_node *node)
{
struct THEAD_struct *d = cur->data.element.html_data;
d->rows = add_to_dom_node_list(&d->rows, node, -1);
add_to_dom_node_list(&d->rows, node, -1);
found = 1;
}
break;
@ -398,7 +398,7 @@ register_row(struct dom_node *node)
tbody = t->tbodies->entries[0];
tb = tbody->data.element.html_data;
tb->rows = add_to_dom_node_list(&tb->rows, node, -1);
add_to_dom_node_list(&tb->rows, node, -1);
goto fin;
}
}
@ -409,7 +409,7 @@ fin:
if (table) {
struct TABLE_struct *d = table->data.element.html_data;
d->rows = add_to_dom_node_list(&d->rows, node, -1);
add_to_dom_node_list(&d->rows, node, -1);
}
}
@ -467,7 +467,7 @@ register_tbody(struct dom_node *table, struct dom_node *node)
{
struct TABLE_struct *d = table->data.element.html_data;
d->rows = add_to_dom_node_list(&d->rows, node, -1);
add_to_dom_node_list(&d->rows, node, -1);
}
void

View File

@ -185,7 +185,7 @@ register_cell(struct dom_node *node)
struct TR_struct *html = row->data.element.html_data;
if (html) {
html->cells = add_to_dom_node_list(&html->cells, node, -1);
add_to_dom_node_list(&html->cells, node, -1);
}
}
}