diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Functions/Misc/zmathfuncdef | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 6167880da..d3080ca32 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-04-23 Peter Stephenson <p.w.stephenson@ntlworld.com> + + * unposted: Functions/Misc/zmathfuncdef: improve recognition + of parameter expansions. + 2006-04-23 Clint Adams <clint@zsh.org> * Francisco Borges: users/10162: updated _aptitude. diff --git a/Functions/Misc/zmathfuncdef b/Functions/Misc/zmathfuncdef index 9ecfcdd82..0a099300f 100644 --- a/Functions/Misc/zmathfuncdef +++ b/Functions/Misc/zmathfuncdef @@ -23,7 +23,7 @@ integer iarg=0 ioptarg local body=$2 # count compulsory arguments -while [[ $body = *'$'$((iarg+1))(|[^[:digit:]]*) ]]; do +while [[ $body = *'$'(\{|)$((iarg+1))(|[^:[:digit:]]*) ]]; do (( iarg++ )) done |