1.0.30.31:
authorKevin Rosenberg <kevin@rosenberg.net>
Sun, 2 Aug 2009 12:47:21 +0000 (12:47 +0000)
committerKevin Rosenberg <kevin@rosenberg.net>
Sun, 2 Aug 2009 12:47:21 +0000 (12:47 +0000)
        src/runtime/interrupt.c: Fix spelling error in error message

NEWS
src/runtime/interrupt.c
version.lisp-expr

diff --git a/NEWS b/NEWS
index 7c536dc..1fea035 100644 (file)
--- 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
index 84ac00b..123a576 100644 (file)
@@ -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;
index edc85ec..f6339ac 100644 (file)
@@ -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"