[plt-scheme] fullscreen & symbol return

From: Matthew Flatt (mflatt at cs.utah.edu)
Date: Mon Apr 28 11:54:35 EDT 2003

At Sun, 27 Apr 2003 17:02:33 +0200, Olivier ORABONA wrote:
> First of all, is it possible to have a fullscreen canvas% ? I have found 
> nothing about it in the docs but I may have missed something. If yes then is 
> it poossible to combine the gl style with it ?

Put the canvas in a frame% created with the 'no-resize-border and
'no-caption style flags.

> My second question is about returning symbols instead of values.
> I'm using scheme_make_symbol("foo") but at top level:
> (bar)
> foo
> (symbol? (bar))
> #t
> (equal? (bar) 'foo)
> #f

Use scheme_intern_symbol() instead of scheme_make_symbol().

Matthew



Posted on the users mailing list.