Skip to content

Commit

Permalink
0.9.6.45:
Browse files Browse the repository at this point in the history
	Fix BIGNUM-ABS-BUFFER to pass the right number of args to
	  NEGATE-BIGNUM-BUFFER-IN-PLACE.
  • Loading branch information
Nathan Froyd committed Nov 15, 2005
1 parent 4d5a868 commit b8fdebe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/code/bignum.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion version.lisp-expr
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit b8fdebe

Please sign in to comment.