summaryrefslogtreecommitdiff
path: root/src/roff/troff/token.h
diff options
context:
space:
mode:
authorwlemb <wlemb>2001-05-16 11:07:51 +0000
committerwlemb <wlemb>2001-05-16 11:07:51 +0000
commit59b5860e276a37567b7c0b1f6a6acadb8b9ab4c6 (patch)
tree08c4ce5ae83c1adf952e58ed745bf32d889b6af8 /src/roff/troff/token.h
parent73b696c337bcaaf324fba6d02ff4081adeab0a10 (diff)
downloadgroff-59b5860e276a37567b7c0b1f6a6acadb8b9ab4c6.tar.gz
* contrib/mm/m.tmac (TH): Fix incorrect error message.
* src/roff/troff/input.cc (read_size): Emit warning if value becomes less than or equal zero; set it to 1 then. * src/roff/troff/node.h (node::node): Initialize `last'.
Diffstat (limited to 'src/roff/troff/token.h')
-rw-r--r--src/roff/troff/token.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/roff/troff/token.h b/src/roff/troff/token.h
index 40283adb..b87a0b18 100644
--- a/src/roff/troff/token.h
+++ b/src/roff/troff/token.h
@@ -72,7 +72,7 @@ public:
int space(); // is the current token a space?
int stretchable_space(); // is the current token a stretchable space?
int white_space(); // is the current token space or tab?
- int special(); // is the current token a special character?
+ int special(); // is the current token a special character?
int newline(); // is the current token a newline?
int tab(); // is the current token a tab?
int leader();