1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-28 01:35:32 +00:00

[link] removed commented code

This commit is contained in:
Witold Filipczyk 2022-03-19 10:11:40 +01:00
parent 659e8058d4
commit f666ea48ed

View File

@ -337,7 +337,6 @@ highlight_links_with_prefixes_that_start_with_n(struct terminal *term,
struct document_view *doc_view,
int n)
{
// struct color_pair *color = get_bfu_color(term, "searched");
unsigned int node_number = get_bfu_color_node(term, "searched");
int xoffset = doc_view->box.x - doc_view->vs->x;
int yoffset = doc_view->box.y - doc_view->vs->y;
@ -358,7 +357,6 @@ highlight_links_with_prefixes_that_start_with_n(struct terminal *term,
int y = link->points[i].y + yoffset;
if (is_in_box(&doc_view->box, x, y)) {
// draw_char_color(term, x, y, color);
draw_char_color_node(term, x, y, node_number);
}
}