diff options
author | Tom Tromey <tom@tromey.com> | 2022-01-22 16:31:52 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2022-02-14 06:22:33 -0700 |
commit | 362501dc5c85ae67c7141292ed5be1bfbd334645 (patch) | |
tree | e69ce79f438247f10faea1fd8ccfa9a35a720f91 /gdb/language.h | |
parent | 13eb081a83b6f9b07cf4447e52e1d0503bf90211 (diff) | |
download | gdb-362501dc5c85ae67c7141292ed5be1bfbd334645.zip gdb-362501dc5c85ae67c7141292ed5be1bfbd334645.tar.gz gdb-362501dc5c85ae67c7141292ed5be1bfbd334645.tar.bz2 |
Remove LA_PRINT_CHAR
This removes the LA_PRINT_CHAR macro, in favor of using ordinary
method calls.
Diffstat (limited to 'gdb/language.h')
-rw-r--r-- | gdb/language.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gdb/language.h b/gdb/language.h index 3930f5b..4eb414b 100644 --- a/gdb/language.h +++ b/gdb/language.h @@ -755,8 +755,6 @@ extern enum language set_language (enum language); the current setting of working_lang, which the user sets with the "set language" command. */ -#define LA_PRINT_CHAR(ch, type, stream) \ - (current_language->printchar (ch, type, stream)) #define LA_PRINT_STRING(stream, elttype, string, length, encoding, force_ellipses, options) \ (current_language->printstr (stream, elttype, string, length, \ encoding, force_ellipses,options)) |