summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2018-10-22 20:25:00 +0200
committerTor Andersson <tor.andersson@artifex.com>2018-10-23 18:46:01 +0200
commitbf169f823f4feefa3572a143f12d297d49863c0e (patch)
treed1b5c9ffceba0030c48699247b0e228696968331 /source
parent6067a93a03c45a841fb7b486b8859ca98857c575 (diff)
downloadmupdf-bf169f823f4feefa3572a143f12d297d49863c0e.tar.xz
Reformat list of constants.
Diffstat (limited to 'source')
-rw-r--r--source/tools/pdfmerge.c14
1 files changed, 11 insertions, 3 deletions
diff --git a/source/tools/pdfmerge.c b/source/tools/pdfmerge.c
index 35259c73..ed7015cc 100644
--- a/source/tools/pdfmerge.c
+++ b/source/tools/pdfmerge.c
@@ -36,9 +36,17 @@ static void page_merge(int page_from, int page_to, pdf_graft_map *graft_map)
int i;
/* Copy as few key/value pairs as we can. Do not include items that reference other pages. */
- static pdf_obj * const copy_list[] = { PDF_NAME(Contents), PDF_NAME(Resources),
- PDF_NAME(MediaBox), PDF_NAME(CropBox), PDF_NAME(BleedBox), PDF_NAME(TrimBox), PDF_NAME(ArtBox),
- PDF_NAME(Rotate), PDF_NAME(UserUnit) };
+ static pdf_obj * const copy_list[] = {
+ PDF_NAME(Contents),
+ PDF_NAME(Resources),
+ PDF_NAME(MediaBox),
+ PDF_NAME(CropBox),
+ PDF_NAME(BleedBox),
+ PDF_NAME(TrimBox),
+ PDF_NAME(ArtBox),
+ PDF_NAME(Rotate),
+ PDF_NAME(UserUnit)
+ };
fz_var(ref);
fz_var(page_dict);