projects
/
sbcl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
62964ac
)
Fix a typo in the previous commit.
author
Stas Boukarev
<stassats@gmail.com>
Tue, 18 Dec 2012 17:51:09 +0000
(21:51 +0400)
committer
Stas Boukarev
<stassats@gmail.com>
Tue, 18 Dec 2012 17:51:09 +0000
(21:51 +0400)
-1 should be ~S.
src/code/toplevel.lisp
patch
|
blob
|
history
diff --git
a/src/code/toplevel.lisp
b/src/code/toplevel.lisp
index
f5a7aa9
..
d3f523f
100644
(file)
--- a/
src/code/toplevel.lisp
+++ b/
src/code/toplevel.lisp
@@
-198,7
+198,7
@@
any non-negative real number."
(when (or (not (realp seconds))
(minusp seconds))
(error 'simple-type-error
- :format-control "Invalid argument to SLEEP: -1, ~
+ :format-control "Invalid argument to SLEEP: ~S, ~
should be a non-negative real."
:format-arguments (list seconds)
:datum seconds