about summary refs log tree commit diff
path: root/Functions
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2006-04-23 22:47:01 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2006-04-23 22:47:01 +0000
commit9b844cfe738ba9dad19d9df3e6ca63e4dba78e61 (patch)
tree0925cbf5daf188c68206590d64ad7839c30f8b56 /Functions
parent7932a719c390fad0f1593cca4f9948f787bf7d55 (diff)
downloadzsh-9b844cfe738ba9dad19d9df3e6ca63e4dba78e61.tar.gz
zsh-9b844cfe738ba9dad19d9df3e6ca63e4dba78e61.tar.xz
zsh-9b844cfe738ba9dad19d9df3e6ca63e4dba78e61.zip
unposted: improve recognition of parameter arguments in zmathfuncdef
Diffstat (limited to 'Functions')
-rw-r--r--Functions/Misc/zmathfuncdef2
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