From b8fdebe9715aad2300f21f33eac147d9ca3951ed Mon Sep 17 00:00:00 2001 From: Nathan Froyd Date: Tue, 15 Nov 2005 16:00:16 +0000 Subject: [PATCH] 0.9.6.45: Fix BIGNUM-ABS-BUFFER to pass the right number of args to NEGATE-BIGNUM-BUFFER-IN-PLACE. --- src/code/bignum.lisp | 2 +- version.lisp-expr | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/code/bignum.lisp b/src/code/bignum.lisp index 2e76411..ad30b2f 100644 --- a/src/code/bignum.lisp +++ b/src/code/bignum.lisp @@ -960,7 +960,7 @@ (defun bignum-abs-buffer (bignum len) (unless (%bignum-0-or-plusp bignum len) - (negate-bignum-in-place bignum len))) + (negate-bignum-buffer-in-place bignum len))) ;;;; shifting diff --git a/version.lisp-expr b/version.lisp-expr index 05879e4..46dcb5b 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".) -"0.9.6.44" +"0.9.6.45" -- 1.7.10.4