[BACK]Return to out.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/out.c between version 1.4 and 1.5

version 1.4, 2009/10/09 06:54:11 version 1.5, 2009/10/18 19:02:10
Line 25 
Line 25 
   
 /*  /*
  * Convert a `scaling unit' to a consistent form, or fail.  Scaling   * Convert a `scaling unit' to a consistent form, or fail.  Scaling
  * units are documented in groff.7, which stipulates the following:   * units are documented in groff.7, mdoc.7, man.7.
  *  
  *  (1) A scaling unit is a signed/unsigned integer/float with or  
  *      without a unit.  
  *  
  *  (2) The following units exist:  
  *      c       Centimeter  
  *      i       Inch  
  *      P       Pica = 1/6 inch  
  *      p       Point = 1/72 inch  
  *      m       Em = the font size in points (width of letter m)  
  *      M       100th of an Em  
  *      n       En = Em/2  
  *      u       Basic unit for actual output device  
  *      v       Vertical line space in basic units scaled point =  
  *              1/sizescale of a point (defined in font DESC file)  
  *      f       Scale by 65536.  
  */   */
 int  int
 a2roffsu(const char *src, struct roffsu *dst)  a2roffsu(const char *src, struct roffsu *dst, enum roffscale def)
 {  {
         char             buf[BUFSIZ], hasd;          char             buf[BUFSIZ], hasd;
         int              i;          int              i;
         enum roffscale   unit;          enum roffscale   unit;
   
           if ('\0' == *src)
                   return(0);
   
         i = hasd = 0;          i = hasd = 0;
   
         switch (*src) {          switch (*src) {
Line 63  a2roffsu(const char *src, struct roffsu *dst)
Line 50  a2roffsu(const char *src, struct roffsu *dst)
                 break;                  break;
         }          }
   
           if ('\0' == *src)
                   return(0);
   
         while (i < BUFSIZ) {          while (i < BUFSIZ) {
                 if ( ! isdigit((u_char)*src)) {                  if ( ! isdigit((u_char)*src)) {
                         if ('.' != *src)                          if ('.' != *src)
Line 103  a2roffsu(const char *src, struct roffsu *dst)
Line 93  a2roffsu(const char *src, struct roffsu *dst)
                 unit = SCALE_EM;                  unit = SCALE_EM;
                 break;                  break;
         case ('\0'):          case ('\0'):
                 /* FALLTHROUGH */                  if (SCALE_MAX == def)
                           return(0);
                   unit = SCALE_BU;
                   break;
         case ('u'):          case ('u'):
                 unit = SCALE_BU;                  unit = SCALE_BU;
                 break;                  break;

Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5

CVSweb