Cleanup expand_escape_variable

This commit is contained in:
ridiculousfish
2012-02-08 00:15:06 -08:00
parent 3f8621e566
commit 191eeab589
4 changed files with 28 additions and 52 deletions

View File

@@ -341,7 +341,7 @@ static void print_variables(int include_values, int esc, int scope)
value.resize(60);
}
wcstring e_value = esc ? expand_escape_variable2(value) : value;
wcstring e_value = esc ? expand_escape_variable(value) : value;
sb_append(sb_out, L" ", e_value.c_str(), NULL);