Restore alpha buildability.
... define two-arg-/= as a static function;
... don't grep out A symbols from nm.
;; a comment from old CMU CL or old old CMU CL or
;; the SBCL alpha port or what? Do we need to worry about it,
;; or can we delete it?
+ sb!kernel:two-arg-/=
eql
sb!kernel:%negate
sb!kernel:two-arg-and
#!/bin/sh
-nm -p "$@" | grep -v " [AabcdgIiNnrstUuvw?-] "
+
+# " A " used to be in the set of removed symbols, but it turns out
+# that the alpha implementation of closure_tramp and undefined_tramp
+# is as an A. Whatever that is. CSR, 2005-06-12.
+
+nm -p "$@" | grep -v " [abcdgIiNnrstUuvw?-] "
;;; checkins which aren't released. (And occasionally for internal
;;; versions, especially for internal versions off the main CVS
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"0.9.1.38"
+"0.9.1.39"