2005-02-11 Andrew Cagney <cagney@gnu.org>
[deliverable/binutils-gdb.git] / gdb / tui / tui-file.c
index 5d2740ef0665d9512a010125bfb9afa047bbdbcb..1ceb47f030e8b3d129733f25f93499aae6f7b63c 100644 (file)
@@ -77,7 +77,7 @@ tui_file_delete (struct ui_file *file)
   struct tui_stream *tmpstream = ui_file_data (file);
   if (tmpstream->ts_magic != &tui_file_magic)
     internal_error (__FILE__, __LINE__,
-                   "tui_file_delete: bad magic number");
+                   _("tui_file_delete: bad magic number"));
   if ((tmpstream->ts_streamtype == astring) &&
       (tmpstream->ts_strbuf != NULL))
     {
@@ -124,7 +124,7 @@ tui_file_isatty (struct ui_file *file)
   struct tui_stream *stream = ui_file_data (file);
   if (stream->ts_magic != &tui_file_magic)
     internal_error (__FILE__, __LINE__,
-                   "tui_file_isatty: bad magic number");
+                   _("tui_file_isatty: bad magic number"));
   if (stream->ts_streamtype == afile)
     return (isatty (fileno (stream->ts_filestream)));
   else
@@ -137,7 +137,7 @@ tui_file_rewind (struct ui_file *file)
   struct tui_stream *stream = ui_file_data (file);
   if (stream->ts_magic != &tui_file_magic)
     internal_error (__FILE__, __LINE__,
-                   "tui_file_rewind: bad magic number");
+                   _("tui_file_rewind: bad magic number"));
   stream->ts_strbuf[0] = '\0';
 }
 
@@ -149,7 +149,7 @@ tui_file_put (struct ui_file *file,
   struct tui_stream *stream = ui_file_data (file);
   if (stream->ts_magic != &tui_file_magic)
     internal_error (__FILE__, __LINE__,
-                   "tui_file_put: bad magic number");
+                   _("tui_file_put: bad magic number"));
   if (stream->ts_streamtype == astring)
     write (dest, stream->ts_strbuf, strlen (stream->ts_strbuf));
 }
@@ -185,7 +185,7 @@ tui_file_get_strbuf (struct ui_file *file)
   struct tui_stream *stream = ui_file_data (file);
   if (stream->ts_magic != &tui_file_magic)
     internal_error (__FILE__, __LINE__,
-                   "tui_file_get_strbuf: bad magic number");
+                   _("tui_file_get_strbuf: bad magic number"));
   return (stream->ts_strbuf);
 }
 
@@ -198,7 +198,7 @@ tui_file_adjust_strbuf (int n, struct ui_file *file)
   int non_null_chars;
   if (stream->ts_magic != &tui_file_magic)
     internal_error (__FILE__, __LINE__,
-                   "tui_file_adjust_strbuf: bad magic number");
+                   _("tui_file_adjust_strbuf: bad magic number"));
 
   if (stream->ts_streamtype != astring)
     return;
@@ -225,7 +225,7 @@ tui_file_flush (struct ui_file *file)
   struct tui_stream *stream = ui_file_data (file);
   if (stream->ts_magic != &tui_file_magic)
     internal_error (__FILE__, __LINE__,
-                   "tui_file_flush: bad magic number");
+                   _("tui_file_flush: bad magic number"));
 
   switch (stream->ts_streamtype)
     {
This page took 0.030651 seconds and 4 git commands to generate.