*** empty log message ***
[deliverable/binutils-gdb.git] / gdb / charset.c
index c311447ea4415bd85581a17da306df5fa3a0010e..89e3b75d63396b75e641e7354f32334254fe0f3f 100644 (file)
@@ -443,7 +443,8 @@ cached_iconv_convert (struct cached_iconv *ci, int from_char, int *to_char)
         return 0;
 
       /* Anything else is mysterious.  */
-      internal_error ("Error converting character `%d' from `%s' to `%s' "
+      internal_error (__FILE__, __LINE__,
+                     "Error converting character `%d' from `%s' to `%s' "
                       "character set: %s",
                       from_char, ci->from->name, ci->to->name,
                       safe_strerror (errno));
@@ -517,9 +518,9 @@ identity_either_char_to_other (void *baton, int either_char, int *other_char)
 /* Default non-trivial conversion functions.  */
 
 
-static char backslashable[] = "abefnrtv";
-static char *backslashed[] = {"a", "b", "e", "f", "n", "r", "t", "v", "0"};
-static char represented[] = "\a\b\e\f\n\r\t\v";
+static char backslashable[] = "abfnrtv";
+static char *backslashed[] = {"a", "b", "f", "n", "r", "t", "v", "0"};
+static char represented[] = "\a\b\f\n\r\t\v";
 
 
 /* Translate TARGET_CHAR into the host character set, and see if it
@@ -1256,7 +1257,7 @@ _initialize_charset (void)
 
   set_cmd_sfunc (new_cmd, set_host_charset_sfunc);
 
-  add_show_from_set (new_cmd, &showlist);
+  deprecated_add_show_from_set (new_cmd, &showlist);
 
 
 
@@ -1272,5 +1273,5 @@ _initialize_charset (void)
                              &setlist);
 
   set_cmd_sfunc (new_cmd, set_target_charset_sfunc);
-  add_show_from_set (new_cmd, &showlist);
+  deprecated_add_show_from_set (new_cmd, &showlist);
 }
This page took 0.023219 seconds and 4 git commands to generate.