diff options
author | pthomas <pthomas@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-12-28 00:09:47 +0000 |
---|---|---|
committer | pthomas <pthomas@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-12-28 00:09:47 +0000 |
commit | 9ef90bd906c1c789f3abd4e32e949136e9c8c7c6 (patch) | |
tree | ccc64e282acb457fe4218e55cf8ee16b1fb7d601 /gcc/cppfiles.c | |
parent | d470d7821dd65c4fb981822bf92bb57d808e6744 (diff) | |
download | ppe42-gcc-9ef90bd906c1c789f3abd4e32e949136e9c8c7c6.tar.gz ppe42-gcc-9ef90bd906c1c789f3abd4e32e949136e9c8c7c6.zip |
cppfiles.c (stack_include_files): Don't translate <stdin>.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@48336 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cppfiles.c')
-rw-r--r-- | gcc/cppfiles.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cppfiles.c b/gcc/cppfiles.c index 1bd6c5a0891..3bdc8f3fbfc 100644 --- a/gcc/cppfiles.c +++ b/gcc/cppfiles.c @@ -331,7 +331,7 @@ stack_include_file (pfile, inc) /* Generate the call back. */ filename = inc->name; if (*filename == '\0') - filename = _("<stdin>"); + filename = "<stdin>"; _cpp_do_file_change (pfile, LC_ENTER, filename, 1, sysp); return true; |