cppfiles.c (stack_include_files): Don't translate <stdin>.
authorPhilipp Thomas <pthomas@suse.de>
Fri, 28 Dec 2001 00:09:47 +0000 (00:09 +0000)
committerPhilipp Thomas <pthomas@gcc.gnu.org>
Fri, 28 Dec 2001 00:09:47 +0000 (00:09 +0000)
From-SVN: r48336

gcc/ChangeLog
gcc/cppfiles.c

index d1327b7cd7e82831e5f6e028a29e6600756769fb..a5e4b93f48f7b4d4235af30a317e409b1d93157e 100644 (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
index 1bd6c5a0891439c54c7fe2039e3f1441c7a9e3fd..3bdc8f3fbfcca94f00c0d8a3f2480e47678b2e22 100644 (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;