02:28 (quit) jonrafkind: Ping timeout: 265 seconds 03:01 (quit) derrida: Ping timeout: 240 seconds 05:19 (join) masm 08:07 bremner: I'm trying to use geiser (emacs mode) with racket. When I have #lang plai at the top of my file, I can't see my definitions in the REPL, although evaluating expressions in the source buffer works. Any hints for a newb? 10:02 (join) jeapostrophe 10:04 bremner: ahh, found the answer on jao's blog. C-u C-c C-z to switch REPL to current module 10:17 (quit) jeapostrophe: Quit: jeapostrophe 10:43 (join) jeapostrophe 11:14 (quit) bremner: Remote host closed the connection 11:16 (join) bremner 11:39 (join) anRch 11:55 (join) cpach 11:59 cpach: hey guys. lisp novice here. i'm using drracket as my editor and i try to make scheme files that work with other dialects (in this case: chicken). i want to be able to specify which module i'm using in drracket, but then chicken chokes on "#lang r5rs". anyone who knows of a workaround? 12:20 bremner: cpach: I take it you want something more permanent than selecting R5RS from the language menu. 12:22 cpach: bremner: preferably, yes. 12:25 cpach: too bad chicken doesn't support "#!r5rs". 12:29 (quit) anRch: Quit: anRch 12:32 cpach: btw, shouldn't there be a menu option for racket/base? 12:33 (join) jonrafkind 12:52 (quit) jeapostrophe: Quit: jeapostrophe 13:01 (quit) sstrickl: Quit: sstrickl 15:18 (join) dodger 15:31 (quit) dodger: 16:48 (join) sstrickl 16:58 (quit) sstrickl: Quit: sstrickl 17:21 (join) jeapostrophe 17:51 (quit) chandler: Read error: Operation timed out 17:52 (join) chandler 17:52 (nick) chandler -> Guest78987 18:25 (quit) Guest78987: Changing host 18:25 (join) Guest78987 18:25 (nick) Guest78987 -> chandler 18:47 eli: cpach: You can use the `plt-r5rs' executable and drop the `#lang' line; but other than that, r5rs is very problematic in that area. 19:23 alexsuraci: what's racket's "default", ie when there's no #lang? 19:38 (quit) masm: Remote host closed the connection 19:39 (join) masm 21:00 eli: alexsuraci: There's no real `default'. When you use the racket executable, it uses the `racket' language for the repl, but that's determined by an `-I' flag. But source code that is not in a module (that doesn't have `#lang') is really random stuff that can be evaluated anywhere, with varying results (eg, what `load' does). 21:07 (quit) masm: Quit: Leaving. 21:51 (quit) acarrico: Ping timeout: 245 seconds 22:10 alexsuraci: eli: ah, ok. thanks.