mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-07-05 19:30:49 +02:00
commit bash-20080410 snapshot
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user