summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNikodemus Siivola <nikodemus@random-state.net>2005-04-10 16:51:48 +0000
committerNikodemus Siivola <nikodemus@random-state.net>2005-04-10 16:51:48 +0000
commit2a71a27c55ad98e36f2886017d45ca2ae986296d (patch)
treecdff78176ff705ffc00e464884b2d08bcf6d26d9 /src
parent1ebf7c82cd385fe067421c06e2b3970e27a6f4b3 (diff)
0.8.21.33: make doctrings.lisp understand embedded examples better
... sufficiently well to make less of a hogwash of the FINALIZE documentation at any rate.
Diffstat (limited to 'src')
-rw-r--r--src/code/final.lisp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/code/final.lisp b/src/code/final.lisp
index 945cd5ec0..15a45a6b1 100644
--- a/src/code/final.lisp
+++ b/src/code/final.lisp
@@ -32,10 +32,9 @@ signalled in whichever thread the FUNCTION was called in.
Examples:
- ;;; good
+ ;;; good (assumes RELEASE-HANDLE is re-entrant)
(let* ((handle (get-handle))
(object (make-object handle)))
- ;; assumes RELEASE-HANDLE is re-entrant
(finalize object (lambda () (release-handle handle)))
object)