diff options
author | Dmitry V. Levin <ldv@altlinux.org> | 2020-12-16 08:00:00 +0000 |
---|---|---|
committer | Dmitry V. Levin <ldv@altlinux.org> | 2020-12-16 10:01:52 +0000 |
commit | 0a5defb64e94ecb2847b98b2c29155131edeaf97 (patch) | |
tree | 2fbbe796e985ad1cefdf4234de8654ce56c14d5e /libdw | |
parent | 2e0ae048de8ada585e8ba7d505aad5c3268f8433 (diff) | |
download | elfutils-0a5defb64e94ecb2847b98b2c29155131edeaf97.tar.gz |
Consistently define _(Str) using dgettext ("elfutils", Str)
Move the definition of _(Str) macro to lib/eu-config.h which already
provides a definition of N_(Str) macro. Since lib/eu-config.h is
appended to config.h, it is included into every compilation unit
and therefore both macros are now universally available.
Remove all other definitions of N_(Str) and _(Str) macros from other files
to avoid conflicts and redundancies.
The next step is to replace all uses of gettext(Str) with _(Str).
Signed-off-by: Dmitry V. Levin <ldv@altlinux.org>
Diffstat (limited to 'libdw')
-rw-r--r-- | libdw/ChangeLog | 4 | ||||
-rw-r--r-- | libdw/libdwP.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/libdw/ChangeLog b/libdw/ChangeLog index ab568f55..20fec602 100644 --- a/libdw/ChangeLog +++ b/libdw/ChangeLog @@ -1,3 +1,7 @@ +2020-12-16 Dmitry V. Levin <ldv@altlinux.org> + + * libdwP.h (_): Remove. + 2020-12-12 Dmitry V. Levin <ldv@altlinux.org> * dwarf.h: Fix spelling typo in comment. diff --git a/libdw/libdwP.h b/libdw/libdwP.h index c18eea43..7174ea93 100644 --- a/libdw/libdwP.h +++ b/libdw/libdwP.h @@ -38,10 +38,6 @@ #include "atomics.h" -/* gettext helper macros. */ -#define _(Str) dgettext ("elfutils", Str) - - /* Known location expressions already decoded. */ struct loc_s { |