summaryrefslogtreecommitdiff
path: root/gdb/language.h
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2022-01-22 16:31:52 -0700
committerTom Tromey <tom@tromey.com>2022-02-14 06:22:33 -0700
commit362501dc5c85ae67c7141292ed5be1bfbd334645 (patch)
treee69ce79f438247f10faea1fd8ccfa9a35a720f91 /gdb/language.h
parent13eb081a83b6f9b07cf4447e52e1d0503bf90211 (diff)
downloadbinutils-gdb-362501dc5c85ae67c7141292ed5be1bfbd334645.tar.gz
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.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/gdb/language.h b/gdb/language.h
index 3930f5bd223..4eb414bbe12 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))