Just moved my code from FreeBSD 18d to Debian 18d+ 3.1.7.
Had a minor problem (now fixed) and was wishing for information. Is this for better ANSI compliance? In several places I had used code as such: (defmethod dummy ((f foobar) &rest rest &allow-other-keys) with no problems on FreeBSD but after moving ot Debian I recieved the error: Misplaced &allow-other-keys in lambda-list and had to change the code to read (defmethod dummy ((f foobar) &rest rest &key dummy-key &allow-other-keys) Thank you, William
