1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-30 01:55:30 +00:00

Some day in the future ELinks will handle copiousoutput without external

pagers. Only a small step for now
This commit is contained in:
Witold Filipczyk 2006-05-04 17:42:19 +02:00 committed by Witold Filipczyk
parent 44ae46c8e3
commit 8ebcddeff4
2 changed files with 2 additions and 0 deletions

View File

@ -658,6 +658,7 @@ 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,6 +11,7 @@ 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! */
};