about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Stephenson <p.w.stephenson@ntlworld.com>2014-10-12 17:52:11 +0100
committerPeter Stephenson <p.w.stephenson@ntlworld.com>2014-10-12 17:52:11 +0100
commit3b5d77d819e1b7a94c4b14d69bddb2dddf8605ff (patch)
tree226e161923542e6c1bf983a8350b65494c4bda41
parent521313b4b95817c9144ab43ab121da934f99bd51 (diff)
downloadzsh-3b5d77d819e1b7a94c4b14d69bddb2dddf8605ff.tar.gz
zsh-3b5d77d819e1b7a94c4b14d69bddb2dddf8605ff.tar.xz
zsh-3b5d77d819e1b7a94c4b14d69bddb2dddf8605ff.zip
33423: expand ${(p)...} to allow ${(ps.$param.)...}
-rw-r--r--ChangeLog6
-rw-r--r--Doc/Zsh/expn.yo13
-rw-r--r--Src/subst.c21
3 files changed, 35 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index b2287d27c..e1de05210 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2014-10-12  Peter Stephenson  <p.w.stephenson@ntlworld.com>
+
+	* 33423: Doc/Zsh/expn.yo, Src/subst.c: parameter expansion
+	(p) flag allows delimited strings to contain simple $param
+	expansions.
+
 2014-10-11  Barton E. Schaefer  <schaefer@zsh.org>
 
 	* unposted: Test/B06fc.ztst: tests for 33429.
diff --git a/Doc/Zsh/expn.yo b/Doc/Zsh/expn.yo
index 5aab25954..a0478e78c 100644
--- a/Doc/Zsh/expn.yo
+++ b/Doc/Zsh/expn.yo
@@ -1124,6 +1124,19 @@ item(tt(p))(
 Recognize the same escape sequences as the tt(print) builtin
 in string arguments to any of the flags described below that
 follow this argument.
+
+Alternatively, with this option string arguments may be in the form
+tt($)var(var) in which case the value of the variable is substituted.
+Note this form is strict; the string argument does not undergo general
+parameter expansion.
+
+For example,
+
+example(sep=:
+val=a:b:c
+print ${+LPAR()ps.$sep.+RPAR()val})
+
+splits the variable on a tt(:).
 )
 item(tt(~))(
 Strings inserted into the expansion by any of the flags below are to
diff --git a/Src/subst.c b/Src/subst.c
index 1aa9b982e..61aa1c136 100644
--- a/Src/subst.c
+++ b/Src/subst.c
@@ -1385,12 +1385,23 @@ static char *
 untok_and_escape(char *s, int escapes, int tok_arg)
 {
     int klen;
-    char *dst;
+    char *dst = NULL;
 
-    untokenize(dst = dupstring(s));
-    if (escapes) {
-	dst = getkeystring(dst, &klen, GETKEYS_SEP, NULL);
-	dst = metafy(dst, klen, META_HREALLOC);
+    if (escapes && (*s == String || *s == Qstring) && s[1]) {
+	char *pstart = s+1, *pend;
+	for (pend = pstart; *pend; pend++)
+	    if (!iident(*pend))
+		break;
+	if (!*pend) {
+	    dst = dupstring(getsparam(pstart));
+	}
+    }
+    if (dst == NULL) {
+	untokenize(dst = dupstring(s));
+	if (escapes) {
+	    dst = getkeystring(dst, &klen, GETKEYS_SEP, NULL);
+	    dst = metafy(dst, klen, META_HREALLOC);
+	}
     }
     if (tok_arg)
 	shtokenize(dst);