cppfiles.c (stack_include_files): Don't translate <stdin>.

From-SVN: r48336
This commit is contained in:
Philipp Thomas 2001-12-28 00:09:47 +00:00 committed by Philipp Thomas
parent fe85f179e8
commit 0b264069f0
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2001-12-28 Philipp Thomas <pthomas@suse.de>
* cppfiles.c (stack_include_file): Don't translate <stdin>.
2001-12-27 Roger Sayle <roger@eyesopen.com>
* builtins.c (expand_builtin_memcmp): Optimize memcmp built-in

View File

@ -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;