just did a cvs update. compiling died on a parsing error in syntax.c
the following patch fixes it.
--- src/syntax.c.orig Sun Aug 15 02:46:24 1999
+++ src/syntax.c Sun Aug 15 02:46:45 1999
@@ -424,9 +424,9 @@
code = SYNTAX_UNSAFE (mirrortab, ch0);
if (!(words_include_escapes
&& (code == Sescape || code == Scharquote)))
- if (code != Sword ||
+ if (code != Sword
#ifdef MULE
- WORD_BOUNDARY_P (ch0, ch1)
+ || WORD_BOUNDARY_P (ch0, ch1)
#endif
)
break;