]> git.cameronkatri.com Git - mandoc.git/blobdiff - out.h
Remove \s TODO: these are intelligently ignored along with \m and \M.
[mandoc.git] / out.h
diff --git a/out.h b/out.h
index e94ed54112510a4edefa94ad1f682e07a8eb4833..fd1e5bd84d3b696633beb4b4060eaaafbb09cafc 100644 (file)
--- a/out.h
+++ b/out.h
@@ -1,6 +1,6 @@
-/*     $Id: out.h,v 1.8 2009/11/08 09:23:35 kristaps Exp $ */
+/*     $Id: out.h,v 1.13 2010/07/18 22:55:06 kristaps Exp $ */
 /*
- * Copyright (c) 2009 Kristaps Dzonsons <kristaps@kth.se>
+ * Copyright (c) 2009 Kristaps Dzonsons <kristaps@bsd.lv>
  *
  * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
@@ -43,14 +43,15 @@ enum        roffdeco {
        DECO_ITALIC,
        DECO_ROMAN,
        DECO_PREVIOUS,
-       DECO_SIZE,
+       DECO_NOSPACE,
+       DECO_FONT, /* font */
+       DECO_FFONT, /* font family */
        DECO_MAX
 };
 
 struct roffsu {
        enum roffscale    unit;
        double            scale;
-       int               pt;
 };
 
 #define        SCALE_INVERT(p) \
@@ -59,14 +60,12 @@ struct      roffsu {
 
 #define        SCALE_VS_INIT(p, v) \
        do { (p)->unit = SCALE_VS; \
-            (p)->scale = (v); \
-            (p)->pt = 0; } \
+            (p)->scale = (v); } \
        while (/* CONSTCOND */ 0)
 
 #define        SCALE_HS_INIT(p, v) \
        do { (p)->unit = SCALE_BU; \
-            (p)->scale = (v); \
-            (p)->pt = 0; } \
+            (p)->scale = (v); } \
        while (/* CONSTCOND */ 0)
 
 int              a2roffsu(const char *,