@@ -75,9 +75,6 @@ extern "C" {
7575 // String to be used to for line feeds
7676 const char * linefeed;
7777
78- // For the image-url Sass function
79- char * image_path;
80-
8178 // Colon-separated list of paths
8279 // Semicolon-separated on Windows
8380 // Maybe use array interface instead?
@@ -327,7 +324,6 @@ extern "C" {
327324 .source_map_embed (c_ctx->source_map_embed )
328325 .source_map_contents (c_ctx->source_map_contents )
329326 .omit_source_map_url (c_ctx->omit_source_map_url )
330- .image_path (safe_str (c_ctx->image_path ))
331327 .include_paths_c_str (c_ctx->include_path )
332328 .importer (c_ctx->importer )
333329 .include_paths_array (include_paths)
@@ -620,7 +616,6 @@ extern "C" {
620616 if (ctx->error_file ) free (ctx->error_file );
621617 if (ctx->input_path ) free (ctx->input_path );
622618 if (ctx->output_path ) free (ctx->output_path );
623- if (ctx->image_path ) free (ctx->image_path );
624619 if (ctx->include_path ) free (ctx->include_path );
625620 if (ctx->source_map_file ) free (ctx->source_map_file );
626621 free_string_array (ctx->included_files );
@@ -632,7 +627,6 @@ extern "C" {
632627 ctx->error_file = 0 ;
633628 ctx->input_path = 0 ;
634629 ctx->output_path = 0 ;
635- ctx->image_path = 0 ;
636630 ctx->include_path = 0 ;
637631 ctx->source_map_file = 0 ;
638632 ctx->included_files = 0 ;
@@ -678,7 +672,6 @@ extern "C" {
678672 IMPLEMENT_SASS_OPTION_ACCESSOR (const char *, linefeed);
679673 IMPLEMENT_SASS_OPTION_STRING_ACCESSOR (const char *, input_path);
680674 IMPLEMENT_SASS_OPTION_STRING_ACCESSOR (const char *, output_path);
681- IMPLEMENT_SASS_OPTION_STRING_ACCESSOR (const char *, image_path);
682675 IMPLEMENT_SASS_OPTION_STRING_ACCESSOR (const char *, include_path);
683676 IMPLEMENT_SASS_OPTION_STRING_ACCESSOR (const char *, source_map_file);
684677
0 commit comments