This patch adds the VALUELABEL function for use in expressions, which
[pspp-builds.git] / src / language / expressions / parse.inc.pl
index 47c590fb306f2c06bc7e1abb8ede6fbdf5773967..bab06d24517a423502e5ac0b7ffa3e5a61382aa0 100644 (file)
@@ -56,6 +56,7 @@ sub generate_output {
        push (@flags, "OPF_EXTENSION") if $op->{EXTENSION};
        push (@flags, "OPF_UNIMPLEMENTED") if $op->{UNIMPLEMENTED};
        push (@flags, "OPF_PERM_ONLY") if $op->{PERM_ONLY};
+       push (@flags, "OPF_NO_ABBREV") if $op->{NO_ABBREV};
        push (@members, @flags ? join (' | ', @flags) : 0);
 
        push (@members, "OP_$op->{RETURNS}{NAME}");