aboutsummaryrefslogtreecommitdiff
path: root/gcc/rtl.c
diff options
context:
space:
mode:
authorPhilipp Thomas <pthomas@suse.de>2000-06-29 10:24:19 +0000
committerPhilipp Thomas <pthomas@gcc.gnu.org>2000-06-29 10:24:19 +0000
commit0c386769d0bd1caf4df1d48262ebb90488f61d29 (patch)
tree698642ea37b754390894bdd14a477e7e6ff2b9d6 /gcc/rtl.c
parent014d6e6c4edc3ffc3958b2f6ef7478b75df029dc (diff)
downloadgcc-0c386769d0bd1caf4df1d48262ebb90488f61d29.zip
gcc-0c386769d0bd1caf4df1d48262ebb90488f61d29.tar.gz
gcc-0c386769d0bd1caf4df1d48262ebb90488f61d29.tar.bz2
rtl.c: Revert NLS changes.
2000-06-29 Philipp Thomas <pthomas@suse.de> * rtl.c : Revert NLS changes. * gcc.c : Fix bug in display_help introced by my last changes. From-SVN: r34778
Diffstat (limited to 'gcc/rtl.c')
-rw-r--r--gcc/rtl.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/rtl.c b/gcc/rtl.c
index cf88964..6c771f6 100644
--- a/gcc/rtl.c
+++ b/gcc/rtl.c
@@ -684,18 +684,18 @@ int read_rtx_lineno = 1;
const char *read_rtx_filename = "<unknown>";
static void
-fatal_with_file_and_line VPARAMS ((FILE *infile, const char *msgid, ...))
+fatal_with_file_and_line VPARAMS ((FILE *infile, const char *msg, ...))
{
#ifndef ANSI_PROTOTYPES
FILE *infile;
- const char *msgid;
+ const char *msg;
#endif
va_list ap;
char context[64];
size_t i;
int c;
- VA_START (ap, msgid);
+ VA_START (ap, msg);
#ifndef ANSI_PROTOTYPES
infile = va_arg (ap, FILE *);
@@ -703,7 +703,7 @@ fatal_with_file_and_line VPARAMS ((FILE *infile, const char *msgid, ...))
#endif
fprintf (stderr, "%s:%d: ", read_rtx_filename, read_rtx_lineno);
- vfprintf (stderr, _(msgid), ap);
+ vfprintf (stderr, msg, ap);
putc ('\n', stderr);
/* Gather some following context. */
@@ -718,7 +718,7 @@ fatal_with_file_and_line VPARAMS ((FILE *infile, const char *msgid, ...))
}
context[i] = '\0';
- fprintf (stderr, _("%s:%d: following context is `%s'\n"),
+ fprintf (stderr, "%s:%d: following context is `%s'\n",
read_rtx_filename, read_rtx_lineno, context);
va_end (ap);