diff options
| author | Peter Stephenson <pws@users.sourceforge.net> | 2003-05-08 10:30:45 +0000 |
|---|---|---|
| committer | Peter Stephenson <pws@users.sourceforge.net> | 2003-05-08 10:30:45 +0000 |
| commit | 78b02d9c036f6b0e0ec7896729a090ec7ccc7a5f (patch) | |
| tree | bbba018cb7d52a3f7ea8dd3bcb6832f06be59132 /README | |
| parent | users/6080, users/6083: more quoting fixes (diff) | |
| download | zsh-78b02d9c036f6b0e0ec7896729a090ec7ccc7a5f.tar zsh-78b02d9c036f6b0e0ec7896729a090ec7ccc7a5f.tar.gz zsh-78b02d9c036f6b0e0ec7896729a090ec7ccc7a5f.tar.bz2 zsh-78b02d9c036f6b0e0ec7896729a090ec7ccc7a5f.tar.lz zsh-78b02d9c036f6b0e0ec7896729a090ec7ccc7a5f.tar.xz zsh-78b02d9c036f6b0e0ec7896729a090ec7ccc7a5f.tar.zst zsh-78b02d9c036f6b0e0ec7896729a090ec7ccc7a5f.zip | |
18512: fix 18508 properly this time.
Diffstat (limited to 'README')
| -rw-r--r-- | README | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -39,6 +39,15 @@ The `=prog' facility for expanding command paths (provided the EQUALS option is enabled, as it is by default) no longer expands aliases. It was felt this feature was underused and confusing. +In 4.0, a literal `/' was quoted in the `src' text of a substitution of the +form `${foo/src/rep}' or ${foo//src/rep} with two backslashes. This was +documented, but inconsistent with normal quoting conventions and poorly +implemented. The `/' now requires only one backslash to quote it whether +or not the expression occurs in double quotes. For example: + % foo=word/bird + % print ${foo/\//-} "${foo/\//+}" + word-bird word+bird + Documentation ------------- |
