diff options
author | Fred Fish <fnf@specifix.com> | 1992-11-21 16:27:58 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1992-11-21 16:27:58 +0000 |
commit | 40528d53eddff312ab31165309e95923e1e7a0e1 (patch) | |
tree | 8789cfc9788ea389944f9614c1f86eda1f5d86ec /gdb/m2-exp.y | |
parent | e20873a7bf7864a7cc33095c755b49dabe1e51fd (diff) | |
download | gdb-40528d53eddff312ab31165309e95923e1e7a0e1.zip gdb-40528d53eddff312ab31165309e95923e1e7a0e1.tar.gz gdb-40528d53eddff312ab31165309e95923e1e7a0e1.tar.bz2 |
* m2-exp.y (m2_printstr): Forgot to change reference of
c_printchar to m2_printchar.
Diffstat (limited to 'gdb/m2-exp.y')
-rw-r--r-- | gdb/m2-exp.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/m2-exp.y b/gdb/m2-exp.y index ae92d96..85488cf 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, " <repeats %u times>", reps); i = rep1 - 1; things_printed += repeat_count_threshold; |