CVSROOT:        /cvsroot/groff
Module name:    groff
Branch:         
Changes by:     Werner LEMBERG <[EMAIL PROTECTED]>      05/04/24 06:10:55

Modified files:
        .              : ChangeLog 
        src/utils/xtotroff: xtotroff.c 

Log message:
        * src/utils/xtotroff/xtotroff.c (MapFont): Fix variable declaration.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/groff/groff/ChangeLog.diff?tr1=1.812&tr2=1.813&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/groff/groff/src/utils/xtotroff/xtotroff.c.diff?tr1=1.2&tr2=1.3&r1=text&r2=text

Patches:
Index: groff/ChangeLog
diff -u groff/ChangeLog:1.812 groff/ChangeLog:1.813
--- groff/ChangeLog:1.812       Mon Apr 18 21:37:52 2005
+++ groff/ChangeLog     Sun Apr 24 06:10:55 2005
@@ -1,3 +1,7 @@
+2005-04-23  Larry Jones  <[EMAIL PROTECTED]>
+
+       * src/utils/xtotroff/xtotroff.c (MapFont): Fix variable declaration.
+
 2005-04-18  Werner LEMBERG  <[EMAIL PROTECTED]>
 
        * src/roff/groff/pipeline.c: Don't include ctype.h.
Index: groff/src/utils/xtotroff/xtotroff.c
diff -u groff/src/utils/xtotroff/xtotroff.c:1.2 
groff/src/utils/xtotroff/xtotroff.c:1.3
--- groff/src/utils/xtotroff/xtotroff.c:1.2     Thu Nov 25 08:08:33 2004
+++ groff/src/utils/xtotroff/xtotroff.c Sun Apr 24 06:10:55 2005
@@ -176,10 +176,11 @@
   for (c = fi->min_char_or_byte2; c <= fi->max_char_or_byte2; c++) {
     const char *name = DviCharName(char_map, c, 0);
     if (charExists(fi, c)) {
+      int param[5];
+
       wid = charWidth(fi, c);
 
       fprintf(out, "%s\t%d", name ? name : "---", wid);
-      int param[5];
       param[0] = charHeight(fi, c);
       param[1] = charDepth(fi, c);
       param[2] = 0;            /* charRBearing (fi, c) - wid */


_______________________________________________
Groff-commit mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/groff-commit

Reply via email to