groff-commit
[Top][All Lists]
Advanced

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

[Groff-commit] groff ChangeLog src/devices/grops/ps.h src/devi...


From: Werner LEMBERG
Subject: [Groff-commit] groff ChangeLog src/devices/grops/ps.h src/devi...
Date: Sun, 10 Feb 2013 08:41:09 +0000

CVSROOT:        /cvsroot/groff
Module name:    groff
Changes by:     Werner LEMBERG <wl>     13/02/10 08:41:09

Modified files:
        .              : ChangeLog 
        src/devices/grops: ps.h psrm.cpp 

Log message:
        * src/devices/grops/ps.h (resource_type): Add RESOURCE_FONTSET.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/groff/ChangeLog?cvsroot=groff&r1=1.1392&r2=1.1393
http://cvs.savannah.gnu.org/viewcvs/groff/src/devices/grops/ps.h?cvsroot=groff&r1=1.7&r2=1.8
http://cvs.savannah.gnu.org/viewcvs/groff/src/devices/grops/psrm.cpp?cvsroot=groff&r1=1.7&r2=1.8

Patches:
Index: ChangeLog
===================================================================
RCS file: /cvsroot/groff/groff/ChangeLog,v
retrieving revision 1.1392
retrieving revision 1.1393
diff -u -b -r1.1392 -r1.1393
--- ChangeLog   10 Feb 2013 08:23:50 -0000      1.1392
+++ ChangeLog   10 Feb 2013 08:41:08 -0000      1.1393
@@ -2,7 +2,7 @@
 
        [grops] Make binary `%%BeginData' work; support `fontset' resource.
 
-       *src/devices/grops/psrm.cpp (resource_table): Add `fontset'.
+       * src/devices/grops/psrm.cpp (resource_table): Add `fontset'.
 
        (resource_manager::read_resource_arg): Do a case insensitive
        comparison.  The PostScript Reference Manual gives the following
@@ -36,6 +36,8 @@
        (resource_manager::do_begin_data): Fix typo (present since the
        beginning) which prevented correct handling of binary data.
 
+       * src/devices/grops/ps.h (resource_type): Add RESOURCE_FONTSET.
+
 2013-02-10  Bernd Warken  <address@hidden>
 
        * contrib/lilypond: New files for adding lilypond parts into groff

Index: src/devices/grops/ps.h
===================================================================
RCS file: /cvsroot/groff/groff/src/devices/grops/ps.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -b -r1.7 -r1.8
--- src/devices/grops/ps.h      5 Jan 2009 20:10:57 -0000       1.7
+++ src/devices/grops/ps.h      10 Feb 2013 08:41:09 -0000      1.8
@@ -1,5 +1,5 @@
 // -*- C++ -*-
-/* Copyright (C) 1989, 1990, 1991, 1992, 2002, 2003, 2009
+/* Copyright (C) 1989-1992, 2002, 2003, 2009, 2013
    Free Software Foundation, Inc.
      Written by James Clark (address@hidden)
 
@@ -53,14 +53,16 @@
   return fp;
 }
 
+// this must stay in sync with `resource_table' in `psrm.cpp'
 enum resource_type {
   RESOURCE_FONT,
+  RESOURCE_FONTSET,
   RESOURCE_PROCSET,
   RESOURCE_FILE,
   RESOURCE_ENCODING,
   RESOURCE_FORM,
   RESOURCE_PATTERN
-  };
+};
 
 struct resource;
 

Index: src/devices/grops/psrm.cpp
===================================================================
RCS file: /cvsroot/groff/groff/src/devices/grops/psrm.cpp,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -b -r1.7 -r1.8
--- src/devices/grops/psrm.cpp  10 Feb 2013 08:23:51 -0000      1.7
+++ src/devices/grops/psrm.cpp  10 Feb 2013 08:41:09 -0000      1.8
@@ -86,6 +86,7 @@
 
 const int NEXTENSIONS = sizeof(extension_table)/sizeof(extension_table[0]);
 
+// this must stay in sync with `resource_type' in `ps.h'
 const char *resource_table[] = {
   "font",
   "fontset",



reply via email to

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