minor bugfix for allegro version 6.2
Larry Hunter <[email protected]>
| Newsgroups | gmane.lisp.ilisp.devel |
|---|---|
| Message-ID | <[email protected]> |
Folks, In trying to test Bill Clementson's new bindings, I noticed that we have a minor bug in allegro.lisp. We currently have ;;; 20001203 Patch suggested by Larry Hunter <[email protected]> ;;; EXCL::FN_SYMDEF is no longer available by default. #+(or allegro-v5.0 allegro-v6.0 allegro-v6.1) (eval-when (compile load) (require :llstructs)) But every time a new Allegro release comes out, this breaks. And, sure enough, now that we are at 6.2, it's broken. This new allegro-specific conditionalization fixes the problem once and for all: #+(and allegro-version>= (version>= 5)) (eval-when (compile load) (require :llstructs)) I don't have commit permissions with CVS -- can someone please install this? Thanks! Larry ------------------------------------------------------- This SF.net email is sponsored by: If flattening out C++ or Java code to make your application fit in a relational database is painful, don't do it! Check out ObjectStore. Now part of Progress Software. http://www.objectstore.net/sourceforge