mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-12-28 16:15:02 +01:00
36075: Disable ‘local’ keyword in script to make data retrieval work
This commit is contained in:
parent
8d849b9caf
commit
c6136b94f3
2 changed files with 7 additions and 0 deletions
|
@ -58,6 +58,9 @@
|
|||
* 36069: Completion/Unix/Command/_tmux: _tmux: Fix \ooo display in
|
||||
completion list
|
||||
|
||||
* 36075: Util/check-tmux-state: Disable ‘local’ keyword in
|
||||
script to make data retrieval work
|
||||
|
||||
2015-08-10 Peter Stephenson <p.stephenson@samsung.com>
|
||||
|
||||
* 36045: Test/A05execution.ztst: make effect of failures
|
||||
|
|
|
@ -40,6 +40,10 @@ differences=none
|
|||
# information. For that, we need to put a few stubs into place so sourcing the
|
||||
# file doesn't blow up in our face.
|
||||
|
||||
# We need to disable the new "local" keyword to make our data retrieval trick
|
||||
# work:
|
||||
disable -r local
|
||||
|
||||
function _arguments () { }
|
||||
function _describe () { }
|
||||
function local () { }
|
||||
|
|
Loading…
Reference in a new issue