From 40528d53eddff312ab31165309e95923e1e7a0e1 Mon Sep 17 00:00:00 2001 From: Fred Fish Date: Sat, 21 Nov 1992 16:27:58 +0000 Subject: [PATCH] * m2-exp.y (m2_printstr): Forgot to change reference of c_printchar to m2_printchar. --- gdb/m2-exp.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdb/m2-exp.y b/gdb/m2-exp.y index ae92d96faf..85488cf440 100644 --- a/gdb/m2-exp.y +++ b/gdb/m2-exp.y @@ -1306,7 +1306,7 @@ m2_printstr (stream, string, length, force_ellipses) fputs_filtered ("\", ", stream); in_quotes = 0; } - c_printchar (string[i], stream); + m2_printchar (string[i], stream); fprintf_filtered (stream, " ", reps); i = rep1 - 1; things_printed += repeat_count_threshold;