tcsh/tcsh-6.14.00-order.patch
vcrhonek 1bcd8ea591 Fix UTF-8 Japanese character is garbled in tcsh script in a certain
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
2008-09-03 11:50:36 +00:00

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