From: Nikodemus Siivola Date: Fri, 1 May 2009 12:03:54 +0000 (+0000) Subject: 1.0.28.4: various macro source locations were off-by-one due to #-sb-xc X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;ds=sidebyside;h=dad557fe44b1c5e10ab5c09f86df77c5725263b7;p=sbcl.git 1.0.28.4: various macro source locations were off-by-one due to #-sb-xc * Thanks to Tobias Rittweiler -- now M-. DEFTRANSFORM, etc. work better in Slime. --- diff --git a/src/compiler/macros.lisp b/src/compiler/macros.lisp index 9a29175..7ec86bd 100644 --- a/src/compiler/macros.lisp +++ b/src/compiler/macros.lisp @@ -229,6 +229,12 @@ attribute-names 'get-setf-expansion))) +;;; Otherwise the source locations for DEFTRANSFORM, DEFKNOWN, &c +;;; would be off by one toplevel form as their source locations are +;;; determined before cross-compiling where the above PROGN is not +;;; seen. +#+sb-xc (progn) + ;;; And now for some gratuitous pseudo-abstraction... ;;; ;;; ATTRIBUTES-UNION diff --git a/version.lisp-expr b/version.lisp-expr index c3678a9..e2906d7 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; 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".) -"1.0.28.3" +"1.0.28.4"