summaryrefslogtreecommitdiff
path: root/etc/functions/finfo
diff options
context:
space:
mode:
authorDaniel Friesel <derf@derf.homelinux.org>2009-03-22 11:20:40 +0100
committerDaniel Friesel <derf@derf.homelinux.org>2009-03-22 11:20:40 +0100
commit63eb4e7e440945a63672492b99844c5feae0a60c (patch)
tree059c13a1b4b80274a5a8606e474e223c5ec110c0 /etc/functions/finfo
parente6a363514b8d1f113f280d4a011ad8a996613c84 (diff)
whichf: return 1 if no function definition file was found
Diffstat (limited to 'etc/functions/finfo')
-rwxr-xr-xetc/functions/finfo2
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/functions/finfo b/etc/functions/finfo
index 87b8acd..a73606d 100755
--- a/etc/functions/finfo
+++ b/etc/functions/finfo
@@ -3,7 +3,7 @@
## Assume that a function begins with an introduction, and print it
typeset line
-[[ -n $(whichf $1) ]] || return 1
+whichf $1 &> /dev/null || return 1
while read line; do
[[ $line == \#* ]] || break