common-lisp.net
/
projects/able/able.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
2bfd88f
)
don't rebind debug I/O streams
author
D Herring
<dherring@at.tentpost.dot.com>
Fri, 18 Nov 2011 04:58:05 +0000 (23:58 -0500)
committer
D Herring
<dherring@at.tentpost.dot.com>
Fri, 18 Nov 2011 04:58:05 +0000 (23:58 -0500)
Now stuff like (break) has a chance of working inside ABLE's listener.
This change shouldn't affect normal user code.
macros.lisp
patch
|
blob
|
blame
|
history
diff --git
a/macros.lisp
b/macros.lisp
index
fdf5bb1
..
9b39ba1
100644
(file)
--- a/
macros.lisp
+++ b/
macros.lisp
@@
-27,8
+27,11
@@
(*trace-output* stream)
;(*error-output* stream)
(*standard-input* stream)
- (*terminal-io* stream)
- (*debug-io* stream))
+ ;; rebinding *terminal-io* breaks SBCL's terminal debugger
+ ;(*terminal-io* stream)
+ ;; rebinding *debug-io* breaks Slime's debugger and SBCL's terminal
+ ;(*debug-io* stream)
+ )
,@body
(flush stream)))