diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2012-05-30 21:47:18 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2012-05-30 21:47:18 +0300 |
commit | e6ddb0631c88b591792e3486f857ca26875de310 (patch) | |
tree | e55826965fc73e1c4615f16490b619f823c8239f /gawkapi.h | |
parent | 04dc190623f0d99d80387b33ca747b8cbad37724 (diff) | |
download | egawk-e6ddb0631c88b591792e3486f857ca26875de310.tar.gz egawk-e6ddb0631c88b591792e3486f857ca26875de310.tar.bz2 egawk-e6ddb0631c88b591792e3486f857ca26875de310.zip |
Continue refining extension API and implementation.
Diffstat (limited to 'gawkapi.h')
-rw-r--r-- | gawkapi.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -245,7 +245,9 @@ typedef struct gawk_api { /* * Update a value. Adds it to the symbol table if not there. - * Changing types is not allowed. + * Changing types (scalar <--> array) is not allowed. + * In fact, using this to update an array is not allowed, either. + * Such an attempt returns false. */ awk_bool_t (*sym_update)(awk_ext_id_t id, const char *name, awk_value_t *value); |