summaryrefslogtreecommitdiff
path: root/content/handlers/html/html.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2020-05-23 22:09:40 +0100
committerVincent Sanders <vince@kyllikki.org>2020-05-23 23:00:08 +0100
commit2ea577c47ecca38a0b2d15b15d242c771ce59e29 (patch)
treefcc5dd27bcd3f5942bb6b58fd5c2d948c4b5ee5f /content/handlers/html/html.c
parenta8c540ea597fb17426c5458fa464f9c505c3bda8 (diff)
downloadnetsurf-2ea577c47ecca38a0b2d15b15d242c771ce59e29.tar.gz
netsurf-2ea577c47ecca38a0b2d15b15d242c771ce59e29.tar.bz2
remove unused is_html parameter to text selection routines
Diffstat (limited to 'content/handlers/html/html.c')
-rw-r--r--content/handlers/html/html.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/handlers/html/html.c b/content/handlers/html/html.c
index 2c471ae40..5ae6ee502 100644
--- a/content/handlers/html/html.c
+++ b/content/handlers/html/html.c
@@ -493,7 +493,7 @@ html_create_html_data(html_content *c, const http_parameter *params)
return NSERROR_NOMEM;
}
- selection_prepare(&c->sel, (struct content *)c, true);
+ selection_prepare(&c->sel, (struct content *)c);
nerror = http_parameter_list_find_item(params, corestring_lwc_charset, &charset);
if (nerror == NSERROR_OK) {