| Allegro CL version 6.2 Significant update since 6.2 release. | |||||||
This document contains the following sections:
1.0 Errata introductionThe errata file may be updated between documentation updates. Please see the latest version here.
The following are noted. They have been fixed in the documentation update visible on This page of the Franz Inc. website (http://www.franz.com/).
up-down-control does not work as
originally described in the documentation (the documentation has been
updated). Though delayed is a property of up-down-control, it
does not yet have any effect in this release. The control works as if
delayed were
nil: the value of the spin box (editable-text)
associated with the control is incremented as long as the mouse button
is held down after clicking on it.
picture-button class had an
incorrect list of possible values for the
:click-off option. It originally and incorrectly
said the possible values for :click-off were
:yes, :no, and nil. In fact the possible values are t and nil. :yes is eqivalent to t and meant the same. :no meant
the same as nil. The values were correct in a
much earlier version. The page has been corrected.
nil. As originally released, the documentation
incorrectly stated copy-to-stream works on all cursor
objects.
(def-java-method (next-token "nextToken")
()) but should be (def-java-method (next-token
"nextToken") (tokenizer)).
(defpackage :mypack
#+allegro (:implementation-packages '("MYPACK"
"MYPACK-2"))
; other options as desired
)
While the value should be a list in calls to make-package, in calls to defpackage, the packages should be elements of
the list starting with :implementation-packages,
and not themselves in a list. The example should be:
(defpackage :mypack
#+allegro (:implementation-packages "MYPACK"
"MYPACK-2")
; other options as desired
)
Copyright (c) 1998-2002, Franz Inc. Oakland, CA., USA. All rights reserved.
Documentation for Allegro CL version 6.2. This page has had significant revisions compared to the 6.1 page.
Created 2002.2.26.
| Allegro CL version 6.2 Significant update since 6.2 release. | |||||||