[Assorted-commits] SF.net SVN: assorted: [194] shell-tools/trunk
Brought to you by:
yangzhang
From: <yan...@us...> - 2007-12-25 02:09:09
|
Revision: 194 http://assorted.svn.sourceforge.net/assorted/?rev=194&view=rev Author: yangzhang Date: 2007-12-24 18:09:09 -0800 (Mon, 24 Dec 2007) Log Message: ----------- removed the ill-named indent(); adding specific reqs to manual Modified Paths: -------------- shell-tools/trunk/doc/manual.txt shell-tools/trunk/src/bash-commons/common.bash Modified: shell-tools/trunk/doc/manual.txt =================================================================== --- shell-tools/trunk/doc/manual.txt 2007-12-25 02:07:04 UTC (rev 193) +++ shell-tools/trunk/doc/manual.txt 2007-12-25 02:09:09 UTC (rev 194) @@ -63,3 +63,12 @@ ***** [bash: http://bash.org/] + + + +Tool-Specific Requirements + +ascii-colors: bash +daemon-ctl: bash, procps +memmon: bash, procps +sum-nums: perl Modified: shell-tools/trunk/src/bash-commons/common.bash =================================================================== --- shell-tools/trunk/src/bash-commons/common.bash 2007-12-25 02:07:04 UTC (rev 193) +++ shell-tools/trunk/src/bash-commons/common.bash 2007-12-25 02:09:09 UTC (rev 194) @@ -160,18 +160,18 @@ silence type "$@" } -indent() { - let ++indent || true -} +#indent() { +# let ++indent || true +#} +# +#deindent() { +# let --indent || true +#} +# +#noindent() { +# indent=0 +#} -deindent() { - let --indent || true -} - -noindent() { - indent=0 -} - log() { echo "$@" } @@ -333,11 +333,11 @@ fi } -if ! is_declared indent ; then - noindent -else - indent -fi +#if ! is_declared indent ; then +# noindent +#else +# indent +#fi #export -f die pu set_title create_file_if_none require_var ren restore cpbkup bkup unhide hide \ # sq have log error silence resolve_path prepend This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |