[net.emacs] Bug in modify-syntax-entry

thomas%UTAH-GR@utah-cs@sri-unix.UUCP (08/01/83)

From:  Spencer W. Thomas  <thomas%UTAH-GR@utah-cs>

If you try to modify the syntax entry for rubout, emacs goes into an
infinite loop.  To fix this, change the declaration of c from char to
int:
98c98
< 	    register char   c = *p++,
---
> 	    register int    c = *p++,

=Spencer