]> 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 b5eb7c81af77493c222a11652cafb0257e8abf94..fd1e5bd84d3b696633beb4b4060eaaafbb09cafc 100644 (file)
--- a/out.h
+++ b/out.h
@@ -1,6 +1,6 @@
-/*     $Id: out.h,v 1.10 2010/04/07 11:25:38 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,7 +43,6 @@ enum  roffdeco {
        DECO_ITALIC,
        DECO_ROMAN,
        DECO_PREVIOUS,
-       DECO_SIZE,
        DECO_NOSPACE,
        DECO_FONT, /* font */
        DECO_FFONT, /* font family */
@@ -53,7 +52,6 @@ enum  roffdeco {
 struct roffsu {
        enum roffscale    unit;
        double            scale;
-       int               pt;
 };
 
 #define        SCALE_INVERT(p) \
@@ -62,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 *,