summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2012-10-04 23:05:56 (EDT)
committer P. J. McDermott <pjm@nac.net>2012-10-04 23:05:56 (EDT)
commite51c1d4baa4612348413479385d4d9391095972f (patch)
treee91c4296f00ae989545fbdbe72013a0fdd3fe3ba /lib
parentfadefb692a7ff4312717346a1869d6fc508db177 (diff)
Fix _ob_local().
Diffstat (limited to 'lib')
-rw-r--r--lib/common.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/common.sh b/lib/common.sh
index ee5dcb5..1488bd7 100644
--- a/lib/common.sh
+++ b/lib/common.sh
@@ -25,7 +25,7 @@ _OB_STACK_VARS=
_ob_local()
{
# Push the variable list onto the stack.
- _OB_STACK_VARS="|${@}"
+ _OB_STACK_VARS="${_OB_STACK_VARS}|${*}"
}
_ob_return()