diff options
author | Chet Ramey <chet.ramey@case.edu> | 2011-12-08 20:08:35 -0500 |
---|---|---|
committer | Chet Ramey <chet.ramey@case.edu> | 2011-12-08 20:08:35 -0500 |
commit | d0ca35030a65d56cc4b4191fec940ea26804ea82 (patch) | |
tree | c10ef0adff71a58fbaef2e9a680c9b66fec8c2e1 /alias.c | |
parent | 2d0c84ef11fdcd69ecc8040a0301803bfd8dda64 (diff) | |
download | bash-d0ca35030a65d56cc4b4191fec940ea26804ea82.tar.gz |
commit bash-20090423 snapshot
Diffstat (limited to 'alias.c')
-rw-r--r-- | alias.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -526,7 +526,7 @@ alias_expand (string) /* If there is a backslash-escaped character quoted in TOKEN, then we don't do alias expansion. This should check for all other quoting characters, too. */ - if (xstrchr (token, '\\')) + if (mbschr (token, '\\')) expand_this_token = 0; /* If we should be expanding here, if we are expanding all words, or if |