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/replace-string | |
| parent | 25940: delay !multi memory allocation until after possibility to error out an... (diff) | |
| download | zsh-000fe2060b74bb396651baad6a1a8c0f31537b08.tar zsh-000fe2060b74bb396651baad6a1a8c0f31537b08.tar.gz zsh-000fe2060b74bb396651baad6a1a8c0f31537b08.tar.bz2 zsh-000fe2060b74bb396651baad6a1a8c0f31537b08.tar.lz zsh-000fe2060b74bb396651baad6a1a8c0f31537b08.tar.xz zsh-000fe2060b74bb396651baad6a1a8c0f31537b08.tar.zst zsh-000fe2060b74bb396651baad6a1a8c0f31537b08.zip | |
update to 4.3.8zsh-4.3.8
Diffstat (limited to 'Functions/Zle/replace-string')
| -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 |
