diff options
author | dos-reis <gdr@axiomatics.org> | 2008-05-18 15:46:22 +0000 |
---|---|---|
committer | dos-reis <gdr@axiomatics.org> | 2008-05-18 15:46:22 +0000 |
commit | ddb4e69b19648af8eb32ef24958f92fa17e93b43 (patch) | |
tree | 439886468ec41b66aee1c08aba594f57bb58145b | |
parent | 46845584742ea3a47f7fa9a1738dd43ad51fbc61 (diff) | |
download | open-axiom-ddb4e69b19648af8eb32ef24958f92fa17e93b43.tar.gz |
Fix AW/321
* hyper/htsearch (htpagedir): Avoid deprecated switch.
-rw-r--r-- | src/ChangeLog | 5 | ||||
-rwxr-xr-x | src/hyper/htsearch | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 5f7308ec..409d45e1 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,10 @@ 2008-05-18 Martin Rubey <martin.rubey@univie.ac.at> + Fix AW/321 + * hyper/htsearch (htpagedir): Avoid deprecated switch. + +2008-05-18 Martin Rubey <martin.rubey@univie.ac.at> + Fix AW/340 * algebra/numtheor.spad.pamphlet (divisors$IntegerNumberTheoryFunctions): Fix thinko. diff --git a/src/hyper/htsearch b/src/hyper/htsearch index 84e272c7..76d95063 100755 --- a/src/hyper/htsearch +++ b/src/hyper/htsearch @@ -8,5 +8,5 @@ if test -z "$1" then echo ""|$htbindir/presea case=1 - else -( cd $htpagedir; $htbindir/hthits "$1" $htpagedir/ht.db |sort -r -n +0.22 |$htbindir/presea case=0 expr="$1" -) +( cd $htpagedir; $htbindir/hthits "$1" $htpagedir/ht.db |sort -r -n -k 1.22 |$htbindir/presea case=0 expr="$1" -) fi |