From 4b198312920a0aa77261413d5d6ff6de1131e164 Mon Sep 17 00:00:00 2001 From: Christophe Rhodes Date: Fri, 28 May 2004 08:44:04 +0000 Subject: [PATCH] 0.8.10.59: *sigh*. Really add src/code/cross-condition.lisp --- src/code/cross-condition.lisp | 18 ++++++++++++++++++ version.lisp-expr | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 src/code/cross-condition.lisp diff --git a/src/code/cross-condition.lisp b/src/code/cross-condition.lisp new file mode 100644 index 0000000..a9a89ff --- /dev/null +++ b/src/code/cross-condition.lisp @@ -0,0 +1,18 @@ +;;;; cross-compiler-only versions of conditions + +;;;; This software is part of the SBCL system. See the README file for +;;;; more information. +;;;; +;;;; This software is derived from the CMU CL system, which was +;;;; written at Carnegie Mellon University and released into the +;;;; public domain. The software is in the public domain and is +;;;; provided with absolutely no warranty. See the COPYING and CREDITS +;;;; files for more information. + +(in-package "SB!KERNEL") + +(define-condition simple-style-warning (simple-condition style-warning) ()) +(define-condition format-too-few-args-warning (simple-warning) ()) +;;; in the cross-compiler, this is a full warning. In the target +;;; compiler, it will only be a style-warning. +(define-condition format-too-many-args-warning (simple-warning) ()) diff --git a/version.lisp-expr b/version.lisp-expr index cfbb109..a0b1ef3 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.8.10.58" +"0.8.10.59" -- 1.7.10.4