1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-11-04 08:17:17 -05:00

Drop unused variable @options from html_focusable().

This commit is contained in:
Laurent MONIN 2007-10-15 12:31:16 +02:00
parent 31d8ffc578
commit b1eaca1f1e

View File

@ -236,7 +236,6 @@ import_css_stylesheet(struct css_stylesheet *css, struct uri *base_uri,
void
html_focusable(struct html_context *html_context, unsigned char *a)
{
struct document_options *options;
unsigned char *accesskey;
int cp;
int tabindex;
@ -246,7 +245,6 @@ html_focusable(struct html_context *html_context, unsigned char *a)
if (!a) return;
options = html_context->options;
cp = html_context->doc_cp;
accesskey = get_attr_val(a, "accesskey", cp);