summaryrefslogtreecommitdiff
path: root/gdb/charset.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2004-02-26 17:23:23 +0000
committerAndrew Cagney <cagney@redhat.com>2004-02-26 17:23:23 +0000
commit06eae0fef5e07106822a6c0a44b428eca74ee4a3 (patch)
tree69034439d93a4f35ccaa681bbf638818495b381a /gdb/charset.c
parent3942567f441453881e10f29925c95377fbf742e1 (diff)
downloadgdb-06eae0fef5e07106822a6c0a44b428eca74ee4a3.tar.gz
Index: ChangeLog
2004-02-26 Andrew Cagney <cagney@redhat.com> Fix PR i18n/1570. * charset.c (backslashable, backslashed, represented): Remove 'e' from list of escaped characters, not part of ISO-C. Index: charset.c Index: testsuite/ChangeLog 2004-02-26 Andrew Cagney <cagney@redhat.com> Fix PR i18n/1570. * gdb.base/charset.c: Update copyright notice. (main, init_string): Remove the escape character '\e' tests. * gdb.base/printcmds.exp (test_print_all_chars): Ditto. * gdb.base/charset.exp (valid_host_charset): Ditto. * gdb.base/setvar.exp: Ditto.
Diffstat (limited to 'gdb/charset.c')
-rw-r--r--gdb/charset.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/charset.c b/gdb/charset.c
index fa683743cb7..2005a49e009 100644
--- a/gdb/charset.c
+++ b/gdb/charset.c
@@ -518,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