diff options
author | Tanaka Akira <akr@users.sourceforge.net> | 1999-08-06 18:01:35 +0000 |
---|---|---|
committer | Tanaka Akira <akr@users.sourceforge.net> | 1999-08-06 18:01:35 +0000 |
commit | 784c413690c71212ad9e08bb093414abd1cacc08 (patch) | |
tree | 450cc9242047dd50255af3b1ef940dae5bb3ab39 /Util | |
parent | 61e68d70da5af5afe943f92cd94a8c96e78348d9 (diff) | |
download | zsh-784c413690c71212ad9e08bb093414abd1cacc08.tar.gz zsh-784c413690c71212ad9e08bb093414abd1cacc08.tar.xz zsh-784c413690c71212ad9e08bb093414abd1cacc08.zip |
zsh-3.1.6-pws-1 zsh-3.1.6-pws-1
Diffstat (limited to 'Util')
-rw-r--r-- | Util/zsh-development-guide | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Util/zsh-development-guide b/Util/zsh-development-guide index d96cc1a04..4ec4ff079 100644 --- a/Util/zsh-development-guide +++ b/Util/zsh-development-guide @@ -285,11 +285,12 @@ Note that no preprocessing is done on the strings. This means that no substitutions are performed on them and that they will be tokenized. There are three helper functions available: - - char *cond_str(args, num) + - char *cond_str(args, num, raw) The first argument is the array of strings the handler function got as an argument and the second one is an index into this array. The return value is the num'th string from the array with - substitutions performed and untokenized. + substitutions performed. If the last argument is zero, the string + will also be untokenized. - long cond_val(args, num) The arguments are the same as for cond_str(). The return value is the result of the mathematical evaluation of the num'th string |