From: Juho Snellman Date: Mon, 18 Sep 2006 11:28:05 +0000 (+0000) Subject: 0.9.16.36: X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=0a62dd8d5169f4e7ee45013e18428df0854e75e3;p=sbcl.git 0.9.16.36: Oops, fix minor bug introduced in .35: #+sb-unicode -> #!+sb-unicode --- diff --git a/src/code/win32.lisp b/src/code/win32.lisp index 3851f55..c5210df 100644 --- a/src/code/win32.lisp +++ b/src/code/win32.lisp @@ -370,7 +370,7 @@ (string ,description) (cons (destructuring-bind (s &optional (l 0) c) ,description (format nil "~A~A~A" s - (if c #-sb-unicode "A@" #+sb-unicode "W@" "@") + (if c #!-sb-unicode "A@" #!+sb-unicode "W@" "@") l)))))) ,@body))) diff --git a/version.lisp-expr b/version.lisp-expr index 021a826..82370fd 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.16.35" +"0.9.16.36"