    [INACTIVE] Allow easy negative testing of array index inclusion

    This patch provides the composite operator "! in" (for "not in"), which
    can be used in array tests. This allows the current negative test
	    if (!(index in theArray)) ...
    to be written
	    if (index !in theArray) ...

    The Enhancements to NEdit macro parsing patch includes this small change.

--- nedit_official/source/parse.y	2005-02-15 22:44:16.000000000 -0500
+++ nedit_mod/source/parse.y	2005-07-12 20:38:30.043237000 -0400
@@ -406,6 +406,10 @@
             | numexpr IN numexpr {
                 ADD_OP(OP_IN_ARRAY);
             }
+            | numexpr NOT IN numexpr {
+                ADD_OP(OP_IN_ARRAY);
+                ADD_OP(OP_NOT);
+            }
             ;
 while:  WHILE {
             $$ = GetPC(); StartLoopAddrList();
