From 8cb79ca6f18f4ed9372af477981a52eefcd21b72 Mon Sep 17 00:00:00 2001 From: Christophe Rhodes Date: Sun, 3 Feb 2013 14:14:55 +0000 Subject: [PATCH] typo fix in sb-sprof. Also update NEWS for fix of #1113859 --- NEWS | 2 ++ contrib/sb-sprof/sb-sprof.lisp | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 616c7c4..4ffb8b2 100644 --- a/NEWS +++ b/NEWS @@ -23,6 +23,8 @@ changes relative to sbcl-1.1.4: SB-DEBUG:BACKTRACE-AS-LIST. ** SB-DEBUG:*SHOW-ENTRY-POINT-DETAILS** has been deprecated, as the same information is available in less intrusive form as frame annotations. + * bug fix: no more unused variable style warnings from RESTART-CASE + macroexpansion (lp#1113859) * bug fix: deleting a package removes it from implementation-package lists of other packages. * bug fix: SB-SPROF:WITH-PROFILING is now usable in the Slime REPL on Darwin. diff --git a/contrib/sb-sprof/sb-sprof.lisp b/contrib/sb-sprof/sb-sprof.lisp index 5ce05aa..0ce3209 100644 --- a/contrib/sb-sprof/sb-sprof.lisp +++ b/contrib/sb-sprof/sb-sprof.lisp @@ -359,7 +359,7 @@ on the depth of the call stack.") (defvar *sampling-mode* :cpu "Default sampling mode. :CPU for cpu profiling, :ALLOC for allocation -profiling, and :TIME for wallclock profilgin.") +profiling, and :TIME for wallclock profiling.") (declaim (type (member :cpu :alloc :time) *sampling-mode*)) (defvar *alloc-region-size* -- 1.7.10.4