diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2006-04-23 22:47:01 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2006-04-23 22:47:01 +0000 |
commit | 9b844cfe738ba9dad19d9df3e6ca63e4dba78e61 (patch) | |
tree | 0925cbf5daf188c68206590d64ad7839c30f8b56 /Functions/Misc/zmathfuncdef | |
parent | 7932a719c390fad0f1593cca4f9948f787bf7d55 (diff) | |
download | zsh-9b844cfe738ba9dad19d9df3e6ca63e4dba78e61.tar.gz zsh-9b844cfe738ba9dad19d9df3e6ca63e4dba78e61.tar.xz zsh-9b844cfe738ba9dad19d9df3e6ca63e4dba78e61.zip |
unposted: improve recognition of parameter arguments in zmathfuncdef
Diffstat (limited to 'Functions/Misc/zmathfuncdef')
-rw-r--r-- | Functions/Misc/zmathfuncdef | 2 |
1 files changed, 1 insertions, 1 deletions
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 |