X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=uip%2Fpick.c;h=8f28f354dcbabec867c41801db3b8455b8852d4b;hp=d034b7ffc7bb15f0dbe9161ab7a369c8b83273b1;hb=431604647f89d5aac7b199a7883e98e56e4ccf9e;hpb=b8f8417b741561bdc88dbfdfe577ec66630aef7f diff --git a/uip/pick.c b/uip/pick.c index d034b7f..8f28f35 100644 --- a/uip/pick.c +++ b/uip/pick.c @@ -515,31 +515,6 @@ static struct swit parswit[] = { { NULL, 0 } }; -/* DEFINITIONS FOR PATTERN MATCHING */ - -/* -** We really should be using re_comp() and re_exec() here. Unfortunately, -** pick advertises that lowercase characters matches characters of both -** cases. Since re_exec() doesn't exhibit this behavior, we are stuck -** with this version. Furthermore, we need to be able to save and restore -** the state of the pattern matcher in order to do things "efficiently". -** -** The matching power of this algorithm isn't as powerful as the re_xxx() -** routines (no \(xxx\) and \n constructs). Such is life. -*/ - -#define CCHR 2 -#define CDOT 4 -#define CCL 6 -#define NCCL 8 -#define CDOL 10 -#define CEOF 11 - -#define STAR 01 - -#define LBSIZE 1024 -#define ESIZE 1024 - /* ** DEFINITIONS FOR NEXUS */