diff --git a/src/st/croco/cr-selector.c b/src/st/croco/cr-selector.c index c9aad4327..37f5abc54 100644 --- a/src/st/croco/cr-selector.c +++ b/src/st/croco/cr-selector.c @@ -50,20 +50,6 @@ cr_selector_new (CRSimpleSel * a_simple_sel) return result; } -CRSelector * -cr_selector_parse_from_buf (const guchar * a_char_buf, enum CREncoding a_enc) -{ - CRParser *parser = NULL; - - g_return_val_if_fail (a_char_buf, NULL); - - parser = cr_parser_new_from_buf ((guchar*)a_char_buf, strlen ((const char *) a_char_buf), - a_enc, FALSE); - g_return_val_if_fail (parser, NULL); - - return NULL; -} - /** * cr_selector_append: * diff --git a/src/st/croco/cr-selector.h b/src/st/croco/cr-selector.h index dd6a7f786..0731e1b80 100644 --- a/src/st/croco/cr-selector.h +++ b/src/st/croco/cr-selector.h @@ -70,9 +70,6 @@ struct _CRSelector CRSelector* cr_selector_new (CRSimpleSel *a_sel_expr) ; -CRSelector * cr_selector_parse_from_buf (const guchar * a_char_buf, - enum CREncoding a_enc) ; - CRSelector* cr_selector_append (CRSelector *a_this, CRSelector *a_new) ; CRSelector* cr_selector_append_simple_sel (CRSelector *a_this,