Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Pavel Vinogradov (f7b978c5ddc63f66f9669ecb47187be1fc30c8e9)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Pavel Vinogradov <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Pavel Vinogradov (f7b978c5ddc63f66f9669ecb47187be1fc30c8e9)
  • Date: Fri, 15 Dec 2017 00:25:40 +0000

GIT changes to master grimoire by Pavel Vinogradov <public AT sourcemage.org>:

doc/zathura-pdf-mupdf/0001-Fixed-for-MuPDF-1.12.0.patch | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit f7b978c5ddc63f66f9669ecb47187be1fc30c8e9
Author: Pavel Vinogradov <public AT sourcemage.org>
Commit: Pavel Vinogradov <public AT sourcemage.org>

doc/zathura-pdf-mupdf: fixed the loop in the patch

diff --git a/doc/zathura-pdf-mupdf/0001-Fixed-for-MuPDF-1.12.0.patch
b/doc/zathura-pdf-mupdf/0001-Fixed-for-MuPDF-1.12.0.patch
index 4de241b..07e3667 100644
--- a/doc/zathura-pdf-mupdf/0001-Fixed-for-MuPDF-1.12.0.patch
+++ b/doc/zathura-pdf-mupdf/0001-Fixed-for-MuPDF-1.12.0.patch
@@ -1,4 +1,4 @@
-From fd2890efb2580ba970d2c7ec90e0c4dd2e64f116 Mon Sep 17 00:00:00 2001
+From b5126af397c6f81be8d29f24d83c37ae5b9eb486 Mon Sep 17 00:00:00 2001
From: Pavel Vinogradov <public AT sourcemage.org>
Date: Thu, 14 Dec 2017 01:06:52 -0500
Subject: [PATCH] Fixed for MuPDF 1.12.0
@@ -13,7 +13,7 @@ Subject: [PATCH] Fixed for MuPDF 1.12.0
6 files changed, 19 insertions(+), 26 deletions(-)

diff --git a/image.c b/image.c
-index b938e5c..853fc84 100644
+index b938e5c..3de01ba 100644
--- a/image.c
+++ b/image.c
@@ -43,18 +43,16 @@ pdf_page_images_get(zathura_page_t* page, mupdf_page_t*
mupdf_page, zathura_erro
@@ -26,7 +26,7 @@ index b938e5c..853fc84 100644
- fz_image_block *image_block = block->u.image;
-
+ fz_stext_block* block;
-+ for (block = mupdf_page->text->first_block; block <
mupdf_page->text->last_block; block++) {
++ for (block = mupdf_page->text->first_block; block; block = block->next) {
+ if (block->type == FZ_STEXT_BLOCK_IMAGE) {
zathura_image_t* zathura_image = g_malloc(sizeof(zathura_image_t));




  • [SM-Commit] GIT changes to master grimoire by Pavel Vinogradov (f7b978c5ddc63f66f9669ecb47187be1fc30c8e9), Pavel Vinogradov, 12/14/2017

Archive powered by MHonArc 2.6.24.

Top of Page