diff options
author | ru <ru@FreeBSD.org> | 2010-01-10 08:02:07 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2010-01-10 08:02:07 +0000 |
commit | 270ba02de1ffa85c9293d73669cae997f42c62b1 (patch) | |
tree | f4923317980c5c94957c3b5a4b1c4906654e92d1 /usr.bin/awk/run.c.diff | |
parent | dd1716139623593608ab5a62cd153c48b97bd043 (diff) | |
download | FreeBSD-src-270ba02de1ffa85c9293d73669cae997f42c62b1.zip FreeBSD-src-270ba02de1ffa85c9293d73669cae997f42c62b1.tar.gz |
Apply patches directly to sources. Their effect is as follows:
- Make one-true-awk respect locale's collating order in [a-z]
bracket expressions, until a more complete fix (like handing
BREs) is ready.
- Don't require a space between -[fv] and its argument.
Diffstat (limited to 'usr.bin/awk/run.c.diff')
-rw-r--r-- | usr.bin/awk/run.c.diff | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/usr.bin/awk/run.c.diff b/usr.bin/awk/run.c.diff deleted file mode 100644 index c0924ea..0000000 --- a/usr.bin/awk/run.c.diff +++ /dev/null @@ -1,15 +0,0 @@ -$FreeBSD$ - -Index: run.c -=================================================================== ---- run.c (revision 201951) -+++ run.c (working copy) -@@ -653,7 +653,7 @@ Cell *relop(Node **a, int n) /* a[0 < a[1], etc. * - j = x->fval - y->fval; - i = j<0? -1: (j>0? 1: 0); - } else { -- i = strcmp(getsval(x), getsval(y)); -+ i = strcoll(getsval(x), getsval(y)); - } - tempfree(x); - tempfree(y); |