diff options
author | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-09-04 00:04:02 +0000 |
---|---|---|
committer | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-09-04 00:04:02 +0000 |
commit | 59921254b16d2a46534fe7f8d4a8c7274e864474 (patch) | |
tree | c24740db9d2bfffa23361d33e0b33a728d658092 /gcc | |
parent | 703790eac65e640a8358d98171e4e16921428cb4 (diff) | |
download | gcc-59921254b16d2a46534fe7f8d4a8c7274e864474.tar.gz |
* intl.h (N_): Remove parentheses.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@71041 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/intl.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0b3248052f1..b9086538557 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-09-04 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE> + + * intl.h (N_): Remove parentheses. + 2003-09-03 Bernardo Innocenti <bernie@develer.com> * config.gcc (m68k-*-linux*): Remove definition of LINUX_DEFAULT_ELF. diff --git a/gcc/intl.h b/gcc/intl.h index 18f66490c59..80a945b45f8 100644 --- a/gcc/intl.h +++ b/gcc/intl.h @@ -48,7 +48,7 @@ extern size_t gcc_gettext_width (const char *); #endif #ifndef N_ -# define N_(msgid) (msgid) +# define N_(msgid) msgid #endif #endif /* intl.h */ |