diff options
| author | Ruslan Ermilov <ru@FreeBSD.org> | 2002-08-11 11:20:54 +0000 |
|---|---|---|
| committer | Ruslan Ermilov <ru@FreeBSD.org> | 2002-08-11 11:20:54 +0000 |
| commit | a3eae6b2e57dc6b7f0025fb7a4263aa96db6fd9a (patch) | |
| tree | 1d739f6a9cccff810808e0f0a95006ffa06d4ec7 /gnu | |
| parent | 099870f36664d6d0a454c336cb8713a903c0ca0b (diff) | |
Notes
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/usr.bin/man/apropos/apropos.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/usr.bin/man/apropos/apropos.sh b/gnu/usr.bin/man/apropos/apropos.sh index 271c32cf16f4..043c3d0b063a 100644 --- a/gnu/usr.bin/man/apropos/apropos.sh +++ b/gnu/usr.bin/man/apropos/apropos.sh @@ -64,7 +64,7 @@ do mandir="$mandir $d/$db" fi - # Check for locailzed manpage subdirectories + # Check for localized manpage subdirectories if [ X"$man_locales" != X ]; then for l in $man_locales do @@ -102,10 +102,10 @@ done | done # nothing found, exit - if test -z "$line" -a ! -z "$line2"; then + if [ -z "$line" -a ! -z "$line2" ]; then printf -- "$line2" exit $exit_nomatch else - ( printf -- "$line2"; echo $line; cat ) | $PAGER + ( printf -- "$line2"; echo "$line"; cat ) | $PAGER fi ) |
