handler-case
is key to handling conditions in Common Lisp, but GCL 2.6.12 on Ubuntu 18.04 considers it to be an undefined function:
>(handler-case (error "test") (error (condition) condition))
Error: UNDEFINED-FUNCTION :NAME HANDLER-CASE
Fast links are on: do (si::use-fast-links nil) for debugging
Signalled by EVAL.
UNDEFINED-FUNCTION :NAME HANDLER-CASE
Broken at EVAL. Type :H for Help.
1 Return to top level.
>>
The same is true for handler-bind
.
The only function related to handling conditions or errors that is obvious in the GCL manual is the GCL-specific universal-error-handler
.
How can conditions be handled in GCL, preferably in a way that is supported by other Lisps?
The situation is explained in the project's
README.Debian
:[...]
(This Debian bug has a little more info.)
handler-case
requires ANSI support, so on Debian-based systems, GCL needs to be started with theGCL_ANSI
environment variable set; for example:To reflect the change, the first line of the startup message changes from:
To: