From: Kevin Rosenberg Date: Sun, 2 Aug 2009 12:47:21 +0000 (+0000) Subject: 1.0.30.31: X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=711389a80032e3a21719f8a5bac7984deec2ae43;p=sbcl.git 1.0.30.31: src/runtime/interrupt.c: Fix spelling error in error message --- diff --git a/NEWS b/NEWS index 7c536dc..1fea035 100644 --- a/NEWS +++ b/NEWS @@ -53,6 +53,7 @@ changes relative to sbcl-1.0.30: be heap allocated to be stack allocated. * bug fix: DESCRIBE signalled an error for generic functions under certain circumstances. (thanks to Leslie Polzer) + * bug fix: Fixed spelling of an error message. changes in sbcl-1.0.30 relative to sbcl-1.0.29: * minor incompatible change: SB-THREAD:JOIN-THREAD-ERROR-THREAD and diff --git a/src/runtime/interrupt.c b/src/runtime/interrupt.c index 84ac00b..123a576 100644 --- a/src/runtime/interrupt.c +++ b/src/runtime/interrupt.c @@ -1271,7 +1271,7 @@ interrupt_handle_now_handler(int signal, siginfo_t *info, void *void_context) || (signal == SIGEMT) #endif ) - corruption_warning_and_maybe_lose("Signal %d recieved", signal); + corruption_warning_and_maybe_lose("Signal %d received", signal); #endif interrupt_handle_now(signal, info, context); RESTORE_ERRNO; diff --git a/version.lisp-expr b/version.lisp-expr index edc85ec..f6339ac 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.30.30" +"1.0.30.31"