Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!linus!decvax!harpo!seismo!hao!hplabs!sri-unix!thomas%UTAH-GR@utah-cs From: thomas%UTAH-GR@utah-cs@sri-unix.UUCP Newsgroups: net.emacs Subject: Bug in modify-syntax-entry Message-ID: <3913@sri-arpa.UUCP> Date: Mon, 1-Aug-83 03:44:00 EDT Article-I.D.: sri-arpa.3913 Posted: Mon Aug 1 03:44:00 1983 Date-Received: Sun, 7-Aug-83 17:25:29 EDT Lines: 11 From: Spencer W. Thomas 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