ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/font.c
(Generate patch)

Comparing ray/src/common/font.c (file contents):
Revision 2.14 by greg, Tue May 13 17:58:32 2003 UTC vs.
Revision 2.19 by greg, Fri Mar 26 23:04:23 2004 UTC

# Line 7 | Line 7 | static const char      RCSid[] = "$Id$";
7  
8   #include "copyright.h"
9  
10 < #include "standard.h"
10 > #include <stdlib.h>
11  
12 + #include "paths.h"
13 + #include "rtio.h"
14 + #include "rterror.h"
15   #include "font.h"
16  
17   #define galloc(nv)      (GLYPH *)malloc(sizeof(GLYPH)+2*sizeof(GORD)*(nv))
# Line 24 | Line 27 | getfont(fname)                         /* return font fname */
27   char  *fname;
28   {
29          FILE  *fp;
30 <        char  *pathname, *err;
30 >        char  *pathname, *err = NULL;
31          unsigned  wsum, hsum, ngly;
32          int  gn, ngv, gv;
33          register GLYPH  *g;
# Line 117 | Line 120 | fonterr:
120          error(USER, errmsg);
121   memerr:
122          error(SYSTEM, "out of memory in fontglyph");
123 +        return NULL; /* pro forma return */
124   }
125  
126  
# Line 128 | Line 132 | FONT *fnt;
132          register FONT  *fl, *f;
133          register int  i;
134                                          /* check reference count */
135 <        if (fnt != NULL && (fnt->nref-- > 1 | retainfonts))
135 >        if (fnt != NULL && ((fnt->nref-- > 1) | retainfonts))
136                  return;
137          head.next = fontlist;
138          fl = &head;
139          while ((f = fl->next) != NULL)
140 <                if ((fnt == NULL | fnt == f)) {
140 >                if ((fnt == NULL) | (fnt == f)) {
141                          fl->next = f->next;
142                          for (i = 0; i < 256; i++)
143                                  if (f->fg[i] != NULL)
# Line 207 | Line 211 | FONT  *f;                      /* font */
211   int  cis;                       /* target intercharacter spacing */
212   int  nsi;                       /* minimum number of spaces for indent */
213   {
214 <        register char  *end, *tab;
214 >        register char  *end, *tab = NULL;
215          GLYPH  *gp;
216          short  *nsp;
217          int  alen, len, width;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines