summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--src/roff/troff/input.cc2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index de3423d8..fe15e544 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2001-06-19 Gaius Mulley <gaius@glam.ac.uk>
+
+ * src/roff/troff/input.cc (do_suppress): Fix typo.
+
2001-06-18 Gaius Mulley <gaius@glam.ac.uk>
Added two new options (-D and -I) to specify image names and a
diff --git a/src/roff/troff/input.cc b/src/roff/troff/input.cc
index d8042bce..6db4ce51 100644
--- a/src/roff/troff/input.cc
+++ b/src/roff/troff/input.cc
@@ -4386,7 +4386,7 @@ node *do_suppress()
int c = tok.ch();
if (c != '[') {
error("argument(s) of \\O must be enclosed in brackets (got %1)",
- char(s));
+ char(c));
return 0;
}
tok.next();