+2010-02-17  Pedro Alves  <pedro@codesourcery.com>
+
+        * gdb.base/charset.exp: Don't assume new `regsub' syntax
+       available.
+
 2010-02-16  Daniel Jacobowitz  <dan@codesourcery.com>
 
        * gdb.xml/tdesc-arch.exp, gdb.xml/tdesc-regs.exp: Rewrite file
 
 gdb_expect {
     -re "Requires an argument. Valid arguments are (.*)\\.\r\n$gdb_prompt $" {
        set host_charset_list $expect_out(1,string)
-       set host_charset_list [regsub -all {, } $host_charset_list {,}]
+       regsub -all {, } $host_charset_list {,} host_charset_list
        foreach host_charset [split $host_charset_list ","] {
            set charsets($host_charset) 1
        }
 gdb_expect {
     -re "Requires an argument. Valid arguments are (.*)\\.\r\n$gdb_prompt $" {
        set target_charset_list $expect_out(1,string)
-       set target_charset_list [regsub -all {, } $target_charset_list {,}]
+       regsub -all {, } $target_charset_list {,} target_charset_list
        foreach target_charset [split $target_charset_list ","] {
            if {! [info exists charsets($target_charset)]} {
                set charsets($target_charset) 0