groff-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[groff] 02/13: [gropdf]: Fix Savannah #62346.


From: G. Branden Robinson
Subject: [groff] 02/13: [gropdf]: Fix Savannah #62346.
Date: Wed, 27 Apr 2022 15:39:21 -0400 (EDT)

gbranden pushed a commit to branch master
in repository groff.

commit 956b7bf15704c63ae8175558025d942eb711efc8
Author: Dave Kemper <saint.snit@gmail.com>
AuthorDate: Fri Apr 22 03:57:42 2022 +0000

    [gropdf]: Fix Savannah #62346.
    
    * src/devices/gropdf/gropdf.pl (ppsz): Recognize ISO B-series paper
      formats using strings of the form "b0-b6", not "isob0-b6", for
      consistency with libgroff and papersize.tmac.
    
    Fixes <http://savannah.gnu.org/bugs/?62346>.
    
    [Thanks to Deri James for reviewing the patch. --GBR]
---
 ChangeLog                    |  8 ++++++++
 src/devices/gropdf/gropdf.pl | 14 +++++++-------
 2 files changed, 15 insertions(+), 7 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 3c162d34..b72bc244 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2022-04-27  Dave Kemper <saint.snit@gmail.com>
+
+       * src/devices/gropdf/gropdf.pl (ppsz): Recognize ISO B-series
+       paper formats using strings of the form "b0-b6", not "isob0-b6",
+       for consistency with libgroff and papersize.tmac.
+
+       Fixes <http://savannah.gnu.org/bugs/?62346>.
+
 2022-04-27  G. Branden Robinson <g.branden.robinson@gmail.com>
 
        * doc/doc.am: Refactor to simplify.  Ingo's removal of the
diff --git a/src/devices/gropdf/gropdf.pl b/src/devices/gropdf/gropdf.pl
index 4162608b..77f3ec16 100644
--- a/src/devices/gropdf/gropdf.pl
+++ b/src/devices/gropdf/gropdf.pl
@@ -157,13 +157,13 @@ my %ppsz=(        'ledger'=>[1224,792],
        'a8'=>[148,210],
        'a9'=>[105,148],
        'a10'=>[73,105],
-       'isob0'=>[2835,4008],
-       'isob1'=>[2004,2835],
-       'isob2'=>[1417,2004],
-       'isob3'=>[1001,1417],
-       'isob4'=>[709,1001],
-       'isob5'=>[499,709],
-       'isob6'=>[354,499],
+       'b0'=>[2835,4008],
+       'b1'=>[2004,2835],
+       'b2'=>[1417,2004],
+       'b3'=>[1001,1417],
+       'b4'=>[709,1001],
+       'b5'=>[499,709],
+       'b6'=>[354,499],
        'c0'=>[2599,3677],
        'c1'=>[1837,2599],
        'c2'=>[1298,1837],



reply via email to

[Prev in Thread] Current Thread [Next in Thread]