1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-10-01 03:36:26 -04:00

Don't export do_html_select.

This commit is contained in:
Miciah Dashiel Butler Masters 2005-11-26 01:32:10 +00:00 committed by Miciah Dashiel Butler Masters
parent 683c8722d2
commit a27284611c
2 changed files with 5 additions and 2 deletions

View File

@ -299,6 +299,10 @@ hid:
html_context->special_f(html_context, SP_CONTROL, fc);
}
static int do_html_select(unsigned char *attr, unsigned char *html,
unsigned char *eof, unsigned char **end,
struct html_context *html_context);
void
html_select(struct html_context *html_context, unsigned char *a,
unsigned char *html, unsigned char *eof, unsigned char **end)
@ -395,7 +399,7 @@ end_parse:
static struct list_menu lnk_menu;
int
static int
do_html_select(unsigned char *attr, unsigned char *html,
unsigned char *eof, unsigned char **end,
struct html_context *html_context)

View File

@ -13,7 +13,6 @@ element_handler_T html_select;
element_handler_T html_option;
element_handler_T html_textarea;
int do_html_select(unsigned char *attr, unsigned char *html, unsigned char *eof, unsigned char **end, struct html_context *html_context);
void do_html_textarea(unsigned char *attr, unsigned char *html, unsigned char *eof, unsigned char **end, struct html_context *html_context);
#endif