1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00

Revert "Some day in the future ELinks will handle copiousoutput without external"

I am reverting all copiousoutput support because of bug 917.
This reverts commit 8ebcddeff4.
This commit is contained in:
Kalle Olavi Niemitalo 2008-06-15 14:39:02 +03:00 committed by Kalle Olavi Niemitalo
parent eb8bbc9286
commit fcb3ba5ba4
2 changed files with 0 additions and 2 deletions

View File

@ -668,7 +668,6 @@ get_mime_handler_mailcap(unsigned char *type, int options)
handler = init_mime_handler(program, entry->description,
mailcap_mime_module.name,
get_mailcap_ask(), block);
if (handler) handler->copiousoutput = entry->copiousoutput;
mem_free(program);
return handler;

View File

@ -11,7 +11,6 @@ struct mime_handler {
unsigned char *backend_name;
unsigned int ask:1;
unsigned int block:1;
unsigned int copiousoutput:1;
unsigned char program[1]; /* XXX: Keep last! */
};