Minor tweaks, including a few small performance improvements

darcs-hash:20060204130914-ac50b-331e83fd8fe472545fce60fc4b76bb8300526d64.gz
This commit is contained in:
axel
2006-02-04 23:09:14 +10:00
parent 9f3a7543aa
commit 4f947015d2
11 changed files with 93 additions and 48 deletions

19
seq.in
View File

@@ -1,16 +1,21 @@
#!@prefix@/bin/fish
#
# Fallback implementation of the seq command
#
# @configure_input@
set -l from 1
set -l step 1
set -l to 1
if test 1 = "@HAVE_GETTEXT@"; and which gettext >/dev/null ^/dev/null
function _ -d "Alias for the gettext command"
gettext fish $argv
end
else
function _ -d "Alias for the gettext command"
printf "%s" $argv
function _ -d "Alias for the gettext command"
printf "%s" $argv
end
if test 1 = "@HAVE_GETTEXT@"
if which gettext ^/dev/null >/dev/null
function _ -d "Alias for the gettext command"
gettext fish $argv
end
end
end