Remove patch now applied to pkgsrc - pkgsrc-localpatches - leot's pkgsrc LOCALPATCHES
 (HTM) hg clone https://bitbucket.org/iamleot/pkgsrc-localpatches
 (DIR) Log
 (DIR) Files
 (DIR) Refs
       ---
 (DIR) changeset a4f4642198620dc8821592ecc959c9e4d8a3949c
 (DIR) parent 5197738245ca0c292d4f5219d47b9e7042a78e54
 (HTM) Author: Leonardo Taccari <iamleot@gmail.com>
       Date:   Thu, 12 Dec 2019 15:36:30 
       
       Remove patch now applied to pkgsrc
       
       Diffstat:
        print/mupdf/patch-platform_x11_pdfapp.c |  18 ------------------
        1 files changed, 0 insertions(+), 18 deletions(-)
       ---
       diff -r 5197738245ca -r a4f464219862 print/mupdf/patch-platform_x11_pdfapp.c
       --- a/print/mupdf/patch-platform_x11_pdfapp.c   Mon Dec 09 15:22:42 2019 +0100
       +++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
       @@ -1,18 +0,0 @@
       -$NetBSD$
       -
       -Fix ` ' on the last page.
       -
       -When ` ' (space) is pressed on the second to last page it doesn't
       -go to the last page.  Adjust the check to DTRT.
       -
       ---- platform/x11/pdfapp.c.orig 2019-08-02 14:49:26.000000000 +0000
       -+++ platform/x11/pdfapp.c
       -@@ -1503,7 +1503,7 @@ void pdfapp_onkey(pdfapp_t *app, int c, 
       -               {
       -                       if (app->imgw + app->panx <= app->winw)
       -                       {
       --                              if (app->pageno + 1 < app->pagecount)
       -+                              if (app->pageno + 1 <= app->pagecount)
       -                               {
       -                                       app->panx = 0;
       -                                       app->pany = 0;