On 11/21/06, Troels Henriksen <athas@sigkill.dk> wrote:
Troels Henriksen <athas@sigkill.dk> writes:
Goatee/goatee-command.lisp fails to compile specifically on CLISP / Win32 because #\Delete is not defined (but it is for CLISP on Unix). The same character value can be obtained with #\Rubout. More info here:
http://www.podval.org/~sds/clisp/impnotes/char-platform-dep.html
Would adding something like "#+win32 #\Rubout #-win32 #\Delete" work? I'm not very familiar with Windows-Lisps.
Andy Hefner seems to have fixed this now. Thanks!
Almost :-) Index: goatee-command.lisp =================================================================== RCS file: /project/mcclim/cvsroot/mcclim/Goatee/goatee-command.lisp,v retrieving revision 1.23 diff -r1.23 goatee-command.lisp 336c336 < (add-gesture-command-to-table '(#\delete :meta) ---
(add-gesture-command-to-table '(#\rubout :meta) 339c339 < (add-gesture-command-to-table '(#\delete :control)
(add-gesture-command-to-table '(#\rubout :control)
-- Jack Unrue