Changeset 10027 for src/Pugs/Lexer.hs

Show
Ignore:
Timestamp:
04/18/06 19:28:51 (3 years ago)
Author:
audreyt
Message:

* undo another lexer tweak - not the time yet

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/Pugs/Lexer.hs

    r10026 r10027  
    146146    aheadSym '-' '>' = False -- XXX hardcode 
    147147    aheadSym '!' '~' = False -- XXX hardcode 
    148     aheadSym x   '=' = not (x `elem` "!~+-*&/|.%^<>") 
     148    aheadSym x   '=' = not (x `elem` "!~+-*&/|.%^") 
    149149    aheadSym '?' y   = not (y `elem` "&|^?") 
    150150    aheadSym '+' y   = not (y `elem` "&|^+")