From d9e67de8a307ad4987bf67f964a22e475e56644e Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Sun, 8 Nov 2009 09:23:35 +0000 Subject: a2roffdeco() now supports \s escapes. --- out.h | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'out.h') diff --git a/out.h b/out.h index baebab08..e94ed541 100644 --- a/out.h +++ b/out.h @@ -1,4 +1,4 @@ -/* $Id: out.h,v 1.7 2009/11/07 08:26:45 kristaps Exp $ */ +/* $Id: out.h,v 1.8 2009/11/08 09:23:35 kristaps Exp $ */ /* * Copyright (c) 2009 Kristaps Dzonsons * @@ -43,6 +43,7 @@ enum roffdeco { DECO_ITALIC, DECO_ROMAN, DECO_PREVIOUS, + DECO_SIZE, DECO_MAX }; @@ -53,15 +54,20 @@ struct roffsu { }; #define SCALE_INVERT(p) \ - do { (p)->scale = -(p)->scale; } while (/*CONSTCOND*/0) + do { (p)->scale = -(p)->scale; } \ + while (/* CONSTCOND */ 0) + #define SCALE_VS_INIT(p, v) \ do { (p)->unit = SCALE_VS; \ (p)->scale = (v); \ - (p)->pt = 0; } while (/*CONSTCOND*/0) + (p)->pt = 0; } \ + while (/* CONSTCOND */ 0) + #define SCALE_HS_INIT(p, v) \ do { (p)->unit = SCALE_BU; \ (p)->scale = (v); \ - (p)->pt = 0; } while (/*CONSTCOND*/0) + (p)->pt = 0; } \ + while (/* CONSTCOND */ 0) int a2roffsu(const char *, struct roffsu *, enum roffscale); -- cgit v1.2.3