1bcd8ea591
situation, Fix calculation order of operators description in tcsh manpage, Fix strings which begin with '0' are not recognized as octal numbers, Fix memoryuse description in tcsh manpage, Fix tcsh scripts with multiple case statement with end keywords break with error, Fix description of builtin command 'set' in tcsh manpage
15 lines
892 B
Diff
15 lines
892 B
Diff
diff -up tcsh-6.15.00/tcsh.man.order tcsh-6.15.00/tcsh.man
|
|
--- tcsh-6.15.00/tcsh.man.order 2008-09-03 12:30:44.000000000 +0200
|
|
+++ tcsh-6.15.00/tcsh.man 2008-09-03 12:30:44.000000000 +0200
|
|
@@ -1614,7 +1614,9 @@ They include
|
|
.PP
|
|
Here the precedence increases to the right, `==' `!=' `=~' and `!~', `<='
|
|
`>=' `<' and `>', `<<' and `>>', `+' and `\-', `*' `/' and `%' being, in
|
|
-groups, at the same level. The `==' `!=' `=~' and `!~' operators compare
|
|
+groups, at the same level. When multiple operators which have same precedence
|
|
+are used in one expression, calculation must be done from operator of right
|
|
+side. The `==' `!=' `=~' and `!~' operators compare
|
|
their arguments as strings; all others operate on numbers. The operators
|
|
`=~' and `!~' are like `!=' and `==' except that the right hand side is a
|
|
glob-pattern (see \fBFilename substitution\fR) against which the left hand
|