diff --git a/src/sequencer/snc_lex.l b/src/sequencer/snc_lex.l index 05263d29d..a70308ed8 100644 --- a/src/sequencer/snc_lex.l +++ b/src/sequencer/snc_lex.l @@ -8,6 +8,7 @@ ENVIRONMENT: UNIX HISTORY: 20nov91,ajk Added OPTION token. +15jan92,ajk Fixed to allow "!" as a unary operator. ***************************************************************************/ /* Lexical analyzer for State Notation Compiler (snc). * @@ -190,6 +191,7 @@ FPNUM (\-?(([0-9]+)(\.[0-9]*)?)|(\.[0-9]+)) "^=" RETURN(CMPL_EQUAL); "+" RETURN(PLUS); "-" RETURN(MINUS); +"!" RETURN(NOT); "/" RETURN(SLASH); "<" RETURN(LT); ">" RETURN(GT);