diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2008-10-29 09:57:52 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2008-10-29 09:57:52 +0000 |
commit | 000fe2060b74bb396651baad6a1a8c0f31537b08 (patch) | |
tree | 567fe6a571b2222c03053f4c990a3997b6bd2f7e /Functions/Zle | |
parent | 031dd01cf20ef231c7f26b262ae01e81e3d6eb34 (diff) | |
download | zsh-000fe2060b74bb396651baad6a1a8c0f31537b08.tar.gz zsh-000fe2060b74bb396651baad6a1a8c0f31537b08.tar.xz zsh-000fe2060b74bb396651baad6a1a8c0f31537b08.zip |
update to 4.3.8 zsh-4.3.8
Diffstat (limited to 'Functions/Zle')
-rw-r--r-- | Functions/Zle/replace-string | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Functions/Zle/replace-string b/Functions/Zle/replace-string index 31a7567db..0b08dbae0 100644 --- a/Functions/Zle/replace-string +++ b/Functions/Zle/replace-string @@ -14,10 +14,10 @@ else fi read-from-minibuffer $p1 ${previous:+$_replace_string_src} || return 1 -_replace_string_src=$REPLY +typeset -g _replace_string_src=$REPLY read-from-minibuffer "$p1$_replace_string_src$p2" \ ${previous:+$_replace_string_rep} || return 1 -_replace_string_rep=$REPLY +typeset -g _replace_string_rep=$REPLY replace-string-again $curwidget |