Allow both x==y and x=y in conditionals. With this change the ksh93 manpage

works.
This commit is contained in:
christos 2013-04-03 01:05:16 +00:00
parent 738a635d29
commit 18c0fd3025
1 changed files with 2 additions and 0 deletions

View File

@ -1095,6 +1095,8 @@ roff_getop(const char *v, int *pos)
return c;
}
switch (c) {
case '=':
return '=';
case '>':
return 'g';
case '<':