Mislav Marohnić 5ae2cac088 fix rbenv() function in ksh and dash
ksh syntax becomes:

    function rbenv {
      typeset command

`typeset` only declares a local variable if there's an explicit
`function` declaration; otherwise the variable leaks.

Other shells use this syntax:

    rbenv() {
      local command

This is for dash compatibility, which supports neither `function` nor
`typeset`.

references #205, fixes #408
2013-09-28 16:12:53 +02:00
..
2013-03-07 15:07:32 -05:00
2013-04-16 14:01:43 +02:00
2013-04-08 23:16:35 +02:00
2012-12-29 22:05:04 -06:00
2012-12-29 22:05:04 -06:00
2013-09-28 16:12:43 +02:00
2013-09-28 16:11:02 +02:00
2013-03-07 15:07:32 -05:00
2012-12-29 22:05:04 -06:00
2012-12-29 22:05:04 -06:00
2012-12-29 22:05:04 -06:00
2012-12-29 22:05:04 -06:00
2012-12-30 16:00:53 -06:00
2013-04-16 14:01:43 +02:00