add a note about undef values
This commit is contained in:
parent
1126ec614f
commit
8a85e62472
|
@ -3,6 +3,11 @@
|
||||||
|
|
||||||
typedef int pic_sym;
|
typedef int pic_sym;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* `undef` values never seen from user-end: that is,
|
||||||
|
* it's used only for repsenting internal special state
|
||||||
|
*/
|
||||||
|
|
||||||
enum pic_vtype {
|
enum pic_vtype {
|
||||||
PIC_VTYPE_NIL = 1,
|
PIC_VTYPE_NIL = 1,
|
||||||
PIC_VTYPE_TRUE,
|
PIC_VTYPE_TRUE,
|
||||||
|
|
Loading…
Reference in New Issue