--New Features:

 * Read colors from .rc file. I'm afraid this needs some tampering
   with the rc parser/design as such...look at it later.

 * Font-lock like highlighting. <-- almost there.

 * Search with regexps. I can do that with GNU_REGEXP_LIB, but not
   without. I need this to do my hightligthing now.

 * One-line indenter + pretty-printer. I have *no* idea how to do this
   general enough to be useful to different language. I guess it will
   be something with a call-back to calculate the indent-level or
   something.

 * Parenthesis match. I have a good idea about how to do this. I need
   two strings, a para_stat, and a para_end, where paranthesis match
   indexwise, e.g. "([{" and ")]}". When the cursor moves it checks
   wether it now stands on a para. If it stands on a para. from start,
   it searches forward til it finds a char in para_end (and likewise
   symetric).  If the index match, it hightligths the two parantheses
   in one color (a nice, friendly color), otherwise another color
   (less friendly).

 * Hide/show comments. It should be possible to hide and show comments
   (double clicking on a comment should fold it to some special
   string, e.g. "/*/", double clicking again should return the
   original string).

--Bugs:

 * hilite_interval gets pretty confused sometimes after I added the
   hilite_when_idle stuff.

--
