From 3ff82c68661051e4c1ac9b80159e5aadcdeb17e7 Mon Sep 17 00:00:00 2001 From: Nikodemus Siivola Date: Wed, 7 Oct 2009 09:56:48 +0000 Subject: [PATCH] 1.0.31.30: fix IF docstring https://bugs.launchpad.net/sbcl/+bug/439264 ...good thing no-one trusts a docstring, eh. A bug report to the effect "IF is broken, executes THEN when condition true" would have been mortifying... --- src/compiler/ir1-translators.lisp | 2 +- version.lisp-expr | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/compiler/ir1-translators.lisp b/src/compiler/ir1-translators.lisp index 9b04e0f..1556377 100644 --- a/src/compiler/ir1-translators.lisp +++ b/src/compiler/ir1-translators.lisp @@ -26,7 +26,7 @@ forms, returns NIL." #!+sb-doc "IF predicate then [else] -If PREDICATE evaluates to false, evaluate THEN and return its values, +If PREDICATE evaluates to true, evaluate THEN and return its values, otherwise evaluate ELSE and return its values. ELSE defaults to NIL." (let* ((pred-ctran (make-ctran)) (pred-lvar (make-lvar)) diff --git a/version.lisp-expr b/version.lisp-expr index 7348d31..1a7df00 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.31.29" +"1.0.31.30" -- 1.7.10.4