From: Thiemo Seufer Date: Sun, 2 Sep 2007 23:34:25 +0000 (+0000) Subject: 1.0.9.29: Fix document string formatting. X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=489bb00dd20898eca10b62d32dd11e5cd79b96a2;p=sbcl.git 1.0.9.29: Fix document string formatting. --- diff --git a/src/compiler/mips/macros.lisp b/src/compiler/mips/macros.lisp index 9c60db9..44d87ca 100644 --- a/src/compiler/mips/macros.lisp +++ b/src/compiler/mips/macros.lisp @@ -26,7 +26,7 @@ (defmacro move (dst src &optional (always-emit-code-p nil)) #!+sb-doc "Move SRC into DST (unless they are location= and ALWAYS-EMIT-CODE-P - is nil)." +is nil)." (once-only ((n-dst dst) (n-src src)) `(if (location= ,n-dst ,n-src) @@ -64,7 +64,7 @@ (defmacro load-type (target source &optional (offset 0)) #!+sb-doc "Loads the type bits of a pointer into target independent of - byte-ordering issues." +byte-ordering issues." (once-only ((n-target target) (n-source source) (n-offset offset)) @@ -149,10 +149,10 @@ &body body) #!+sb-doc "Do stuff to allocate an other-pointer object of fixed Size with a single - word header having the specified Type-Code. The result is placed in - Result-TN, Flag-Tn must be wired to NL4-OFFSET, and Temp-TN is a non- - descriptor temp (which may be randomly used by the body.) The body is - placed inside the PSEUDO-ATOMIC, and presumably initializes the object." +word header having the specified Type-Code. The result is placed in +Result-TN, Flag-Tn must be wired to NL4-OFFSET, and Temp-TN is a non- +descriptor temp (which may be randomly used by the body.) The body is +placed inside the PSEUDO-ATOMIC, and presumably initializes the object." (unless body (bug "empty &body in WITH-FIXED-ALLOCATION")) (once-only ((result-tn result-tn) (flag-tn flag-tn) (temp-tn temp-tn) diff --git a/version.lisp-expr b/version.lisp-expr index bda4ef7..7c53621 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.9.28" +"1.0.9.29"