summaryrefslogtreecommitdiff
path: root/src/roff/troff/input.cpp
diff options
context:
space:
mode:
authorwl <wl>2007-09-20 07:39:30 +0000
committerwl <wl>2007-09-20 07:39:30 +0000
commit8e363f8a6ec7772f25f633c2e366d6da2daac6ab (patch)
treef007f1fd855a96ad88bcf65c643e8ebfcb3a6ca0 /src/roff/troff/input.cpp
parente4f206b8a3104ee734b913a2d50980bf5bdf3634 (diff)
downloadgroff-8e363f8a6ec7772f25f633c2e366d6da2daac6ab.tar.gz
* src/roff/troff/input.cpp (interpolate_arg): Remove compiler
warning. * src/preproc/eqn/pile.cpp (pile_box::output, matrix_box::output): Remove compiler warning. * src/preproc/refer/label.y: Remove compiler warning. * src/preproc/pic/pic.y: Remove doubled token entries.
Diffstat (limited to 'src/roff/troff/input.cpp')
-rw-r--r--src/roff/troff/input.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/roff/troff/input.cpp b/src/roff/troff/input.cpp
index 414bad8b..6e8b269e 100644
--- a/src/roff/troff/input.cpp
+++ b/src/roff/troff/input.cpp
@@ -4288,13 +4288,13 @@ static void interpolate_arg(symbol nm)
string args;
for (int i = 1; i <= limit; i++) {
args += '"';
- args += BEGIN_QUOTE;
+ args += char(BEGIN_QUOTE);
input_iterator *p = input_stack::get_arg(i);
int c;
while ((c = p->get(0)) != EOF)
if (c != DOUBLE_QUOTE)
args += c;
- args += END_QUOTE;
+ args += char(END_QUOTE);
args += '"';
if (i != limit)
args += ' ';