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

Diff for /mandoc/term_ps.c between version 1.60 and 1.63

version 1.60, 2014/04/23 21:06:41 version 1.63, 2014/08/10 23:54:41
Line 15 
Line 15 
  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF   * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.   * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */   */
 #ifdef HAVE_CONFIG_H  
 #include "config.h"  #include "config.h"
 #endif  
   
 #include <sys/types.h>  #include <sys/types.h>
   
Line 914  ps_pletter(struct termp *p, int c)
Line 912  ps_pletter(struct termp *p, int c)
   
         f = (int)p->ps->lastf;          f = (int)p->ps->lastf;
   
         if (c <= 32 || (c - 32 >= MAXCHAR)) {          if (c <= 32 || c - 32 >= MAXCHAR)
                 ps_putchar(p, ' ');                  c = 32;
                 p->ps->pscol += (size_t)fonts[f].gly[0].wx;  
                 return;  
         }  
   
         ps_putchar(p, (char)c);          ps_putchar(p, (char)c);
         c -= 32;          c -= 32;
Line 1104  ps_width(const struct termp *p, int c)
Line 1099  ps_width(const struct termp *p, int c)
 {  {
   
         if (c <= 32 || c - 32 >= MAXCHAR)          if (c <= 32 || c - 32 >= MAXCHAR)
                 return((size_t)fonts[(int)TERMFONT_NONE].gly[0].wx);                  c = 0;
           else
                   c -= 32;
   
         c -= 32;  
         return((size_t)fonts[(int)TERMFONT_NONE].gly[c].wx);          return((size_t)fonts[(int)TERMFONT_NONE].gly[c].wx);
 }  }
   
Line 1125  ps_hspan(const struct termp *p, const struct roffsu *s
Line 1121  ps_hspan(const struct termp *p, const struct roffsu *s
                 r = PNT2AFM(p, su->scale * 28.34);                  r = PNT2AFM(p, su->scale * 28.34);
                 break;                  break;
         case SCALE_IN:          case SCALE_IN:
                 r = PNT2AFM(p, su->scale * 72);                  r = PNT2AFM(p, su->scale * 72.0);
                 break;                  break;
         case SCALE_PC:          case SCALE_PC:
                 r = PNT2AFM(p, su->scale * 12);                  r = PNT2AFM(p, su->scale * 12.0);
                 break;                  break;
         case SCALE_PT:          case SCALE_PT:
                 r = PNT2AFM(p, su->scale * 100);                  r = PNT2AFM(p, su->scale * 100.0);
                 break;                  break;
         case SCALE_EM:          case SCALE_EM:
                 r = su->scale *                  r = su->scale *

Legend:
Removed from v.1.60  
changed lines
  Added in v.1.63

CVSweb