From: Shamus Hammons Date: Sun, 1 Feb 2015 02:49:38 +0000 (-0600) Subject: Fixed a nasty bug that dropped symbols that shouldn't have been. X-Git-Tag: v2.1.0~209 X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=commitdiff_plain;h=a48737de123e304866212f5382d6fa4174d496a0;hp=a48737de123e304866212f5382d6fa4174d496a0 Fixed a nasty bug that dropped symbols that shouldn't have been. This stemmed from the fact that EQUR symbols somehow made it on to the symbol declaration list. If such symbol was later .equrundef'd, it would find it's way back onto the the sdecl list *twice*, with the result that any symbols that came after it would be summarily discarded into the ether. Really, really bad mojo. ---