version 1.61, 2014/07/27 21:53:17 |
version 1.63, 2014/08/10 23:54:41 |
|
|
* 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 1123 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 * |