summaryrefslogtreecommitdiff
path: root/alias.c
diff options
context:
space:
mode:
authorChet Ramey <chet.ramey@case.edu>2011-12-08 20:08:35 -0500
committerChet Ramey <chet.ramey@case.edu>2011-12-08 20:08:35 -0500
commitd0ca35030a65d56cc4b4191fec940ea26804ea82 (patch)
treec10ef0adff71a58fbaef2e9a680c9b66fec8c2e1 /alias.c
parent2d0c84ef11fdcd69ecc8040a0301803bfd8dda64 (diff)
downloadbash-d0ca35030a65d56cc4b4191fec940ea26804ea82.tar.gz
commit bash-20090423 snapshot
Diffstat (limited to 'alias.c')
-rw-r--r--alias.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/alias.c b/alias.c
index 2eedad58..558665e5 100644
--- a/alias.c
+++ b/alias.c
@@ -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