[version 0.5.5 ediware**20070424170008] { hunk ./CHANGELOG 1 +Version 0.5.5 +2007-04-24 +Ugh, fix the fix once more (again thanks to Jong-won Choi) + hunk ./cl-gd.asd 2 -;;; $Header: /usr/local/cvsrep/gd/cl-gd.asd,v 1.16 2007/04/05 23:22:24 edi Exp $ +;;; $Header: /usr/local/cvsrep/gd/cl-gd.asd,v 1.17 2007/04/24 09:01:39 edi Exp $ hunk ./cl-gd.asd 43 - :version "0.5.4" + :version "0.5.5" hunk ./doc/index.html 206 -current version is 0.5.4. A Debian package is available thanks to Peter van Eynde and Kevin Rosenberg, so if you're on Debian you should have no problems installing CL-GD. There's also a port +current version is 0.5.5. A Debian package is available thanks to Peter van Eynde and Kevin Rosenberg, so if you're on Debian you should have no problems installing CL-GD. There's also a port hunk ./doc/index.html 284 +

+If you want to send patches, please read this first. hunk ./doc/index.html 1437 -$Header: /usr/local/cvsrep/gd/doc/index.html,v 1.72 2007/04/05 23:22:26 edi Exp $ +$Header: /usr/local/cvsrep/gd/doc/index.html,v 1.74 2007/04/24 09:01:40 edi Exp $ hunk ./strings.lisp 2 -;;; $Header: /usr/local/cvsrep/gd/strings.lisp,v 1.22 2007/04/05 23:22:24 edi Exp $ +;;; $Header: /usr/local/cvsrep/gd/strings.lisp,v 1.23 2007/04/24 09:01:39 edi Exp $ hunk ./strings.lisp 136 - (cond (do-not-draw - (setq color 0 - image (or image *null-image*))) - (t - (check-type color integer) - (check-type image image))) + (unless do-not-draw + (check-type color integer) + (check-type image image)) hunk ./strings.lisp 144 + (when do-not-draw + (setq color 0 + image *null-image*)) }