source:
branches/1.1.x/src/org/armedbear/lisp/error.lisp
Last change on this file was 11297, checked in by , 16 years ago | |
---|---|
|
|
File size: 204 bytes |
Line | |
---|---|
1 | ;;; error.lisp |
2 | |
3 | (in-package "COMMON-LISP") |
4 | |
5 | (export '(ignore-errors)) |
6 | |
7 | (defmacro ignore-errors (&rest forms) |
8 | `(handler-case (progn ,@forms) |
9 | (error (condition) (values nil condition)))) |
Note: See TracBrowser
for help on using the repository browser.