Changeset 4825 for src/Main.hs

Show
Ignore:
Timestamp:
06/19/05 00:00:21 (4 years ago)
Author:
autrijus
svk:copy_cache_prev:
6641
Message:

* @*END support!

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/Main.hs

    r4792 r4825  
    119119userDefined (MkPad pad) = MkPad $ Map.filterWithKey doFilter pad 
    120120    where 
    121     doFilter (_:'*':_) _ = False 
    122     doFilter _ _         = True 
     121    doFilter "@*END" _      = True 
     122    doFilter (_:'*':_) _    = False 
     123    doFilter _ _            = True 
    123124 
    124125repLoop :: IO ()