summaryrefslogtreecommitdiffstats
path: root/tcsh-6.14.00-order.patch
diff options
context:
space:
mode:
authorvcrhonek <vcrhonek@fedoraproject.org>2008-09-03 11:50:36 +0000
committervcrhonek <vcrhonek@fedoraproject.org>2008-09-03 11:50:36 +0000
commit1bcd8ea591286664483d0aea2601a8729eb6b81f (patch)
tree135810739118b2cc18c12eef719ca882ff887dfb /tcsh-6.14.00-order.patch
parent5b0f4da4051be4535915052599b18b45b1c985d8 (diff)
downloadtcsh-rebase-6.19.00-1bcd8ea591286664483d0aea2601a8729eb6b81f.tar.gz
tcsh-rebase-6.19.00-1bcd8ea591286664483d0aea2601a8729eb6b81f.tar.xz
tcsh-rebase-6.19.00-1bcd8ea591286664483d0aea2601a8729eb6b81f.zip
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
Diffstat (limited to 'tcsh-6.14.00-order.patch')
-rw-r--r--tcsh-6.14.00-order.patch14
1 files changed, 14 insertions, 0 deletions
diff --git a/tcsh-6.14.00-order.patch b/tcsh-6.14.00-order.patch
new file mode 100644
index 0000000..7bbbe8c
--- /dev/null
+++ b/tcsh-6.14.00-order.patch
@@ -0,0 +1,14 @@
+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