diff options
author | Hironobu Yamashita <h.y.acetaminophen@gmail.com> | 2018-10-13 10:35:57 +0000 |
---|---|---|
committer | Hironobu Yamashita <h.y.acetaminophen@gmail.com> | 2018-10-13 10:35:57 +0000 |
commit | 3374491acc849678346949cfcdf582d36c2c1804 (patch) | |
tree | b96980580502f4407993d8b741e472f9c0149b4c /Build/source/texk/dviout-util/dvispc.c | |
parent | 973b5b4740e61aedb2e009074bffc3b41e18cd7f (diff) |
dviout-util: disabled pdf:ann/eann support which was not working well
git-svn-id: svn://tug.org/texlive/trunk@48899 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/dviout-util/dvispc.c')
-rw-r--r-- | Build/source/texk/dviout-util/dvispc.c | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/Build/source/texk/dviout-util/dvispc.c b/Build/source/texk/dviout-util/dvispc.c index 67e08a71517..1f4face7df3 100644 --- a/Build/source/texk/dviout-util/dvispc.c +++ b/Build/source/texk/dviout-util/dvispc.c @@ -963,11 +963,11 @@ lastpage: if(isdigit(*++out_pages)){ write_sp(fp, pdf_bgcolor); f_needs_corr++; } - while(pdf_annot_under > 0){ /* recover underflow of pdf:bann ... pdf:eann stack */ - /* [TODO] what should we do here? */ - f_needs_corr++; - pdf_annot_under--; - } +// while(pdf_annot_under > 0){ /* recover underflow of pdf:bann ... pdf:eann stack */ +// /* [TODO] what should we do here? */ +// f_needs_corr++; +// pdf_annot_under--; +// } /* [Process 3] write contents of the current page */ fseek(dvi->file_ptr, dim->page_index[page]+45, SEEK_SET); @@ -984,10 +984,10 @@ lastpage: if(isdigit(*++out_pages)){ write_sp(fp, "pdf:ecolor"); f_needs_corr++; } - for(count = 0; count < pdf_annot_depth; count++){ - write_sp(fp, "pdf:eann"); - f_needs_corr++; - } +// for(count = 0; count < pdf_annot_depth; count++){ +// write_sp(fp, "pdf:eann"); +// f_needs_corr++; +// } write_byte((uchar)EOP, fp); /* write EOP */ former = current; current = ftell(fp); /* get position of BOP/POST */ @@ -1003,15 +1003,15 @@ lastpage: if(isdigit(*++out_pages)){ write_sp(fp, color_pt[count]); for(count = 0; count < pdf_color_depth; count++) write_sp(fp, pdf_color_pt[count]); - for(count = 0; count < pdf_annot_depth; count++) - write_sp(fp, pdf_annot_pt[count]); +// for(count = 0; count < pdf_annot_depth; count++) +// write_sp(fp, pdf_annot_pt[count]); if(tpic_pn[0]) { write_sp(fp, tpic_pn); f_needs_corr++; } f_needs_corr += color_depth; f_needs_corr += pdf_color_depth; - f_needs_corr += pdf_annot_depth; +// f_needs_corr += pdf_annot_depth; if(tpic_pn[0]) f_needs_corr++; } @@ -1345,11 +1345,11 @@ skip: while (tmp--) strncpy(pdf_bgcolor, special, MAX_LEN); f_pdf_bgcolor = 1; } - else if(!strsubcmp_n(special, "pdf:bann")) /* pdf:bann */ - sp_pdf_bann(special); - else if(!strsubcmp(special, "pdf:eann")) /* pdf:eann */ - sp_pdf_eann(special); - break; +// else if(!strsubcmp_n(special, "pdf:bann")) /* pdf:bann */ +// sp_pdf_bann(special); +// else if(!strsubcmp(special, "pdf:eann")) /* pdf:eann */ +// sp_pdf_eann(special); + break; } goto skip; } @@ -1472,7 +1472,7 @@ void sp_pdf_eann(char *sp) if(--pdf_annot_depth < 0){ fprintf(stderr, "pdf:bann ... pdf:eann stack underflow\n"); pdf_annot_under++; - f_needs_corr++; +// f_needs_corr++; pdf_annot_depth = 0; } return; |