commit bash-20080410 snapshot

This commit is contained in:
Chet Ramey
2011-12-07 09:21:48 -05:00
parent 1d0e1a34e0
commit 6a8fd0ed50
220 changed files with 27343 additions and 10005 deletions
+2 -2
View File
@@ -2616,9 +2616,9 @@ read_token (command)
/* If '<' then we could be at "<<" or at "<<-". We have to
look ahead one more character. */
peek_char = shell_getc (1);
if (peek_char == '-')
if MBTEST(peek_char == '-')
return (LESS_LESS_MINUS);
else if (peek_char == '<')
else if MBTEST(peek_char == '<')
return (LESS_LESS_LESS);
else
{