diff options
author | gordon <gordon@FreeBSD.org> | 2010-10-02 06:55:04 +0000 |
---|---|---|
committer | gordon <gordon@FreeBSD.org> | 2010-10-02 06:55:04 +0000 |
commit | 2b449d5f12aee5bef6c303a7d3ca124d22fd795b (patch) | |
tree | dc0449d7ed0ee0c869254ce84258a791c3a114bc /usr.bin/man | |
parent | 2d1121be27a4b3fe694bb1cf62160fafb9e683c9 (diff) | |
download | FreeBSD-src-2b449d5f12aee5bef6c303a7d3ca124d22fd795b.zip FreeBSD-src-2b449d5f12aee5bef6c303a7d3ca124d22fd795b.tar.gz |
Fix up whatis/apropos issue displaying all output on a single due to
forgotten quotes.
Submitted by: Brandon Gooch
Approved by: wes (mentor, implicit)
Diffstat (limited to 'usr.bin/man')
-rwxr-xr-x | usr.bin/man/man.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/man/man.sh b/usr.bin/man/man.sh index f8da4da..a008029 100755 --- a/usr.bin/man/man.sh +++ b/usr.bin/man/man.sh @@ -719,11 +719,11 @@ search_whatis() { bad=${bad#\\n} if [ -n "$good" ]; then - echo -e $good | $PAGER + echo -e "$good" | $PAGER fi if [ -n "$bad" ]; then - echo -e $bad >&2 + echo -e "$bad" >&2 fi exit $rval |