aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/funced.fish
diff options
context:
space:
mode:
authorGravatar Siteshwar Vashisht <siteshwar@gmail.com>2012-07-24 04:35:37 +0530
committerGravatar Siteshwar Vashisht <siteshwar@gmail.com>2012-07-24 04:35:37 +0530
commit32d2d0f0d028e3f64edc1694d23a8283861a7e6d (patch)
tree5717e31256653dee0d80c467428f29ffc21d44e6 /share/functions/funced.fish
parent81e0342bf6b29fb0cebc726c6741deb82c3f1c23 (diff)
Minor refactoring and fixed a bug in history function
Diffstat (limited to 'share/functions/funced.fish')
-rw-r--r--share/functions/funced.fish2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/functions/funced.fish b/share/functions/funced.fish
index 075b0301..f35a72fa 100644
--- a/share/functions/funced.fish
+++ b/share/functions/funced.fish
@@ -84,6 +84,6 @@ function funced --description 'Edit function definition'
. $tmpname
end
set -l stat $status
- rm $tmpname >/dev/null
+ rm -f $tmpname >/dev/null
return $stat
end