From larry at susanka.com Fri Feb 1 20:04:38 2002 From: larry at susanka.com (Larry Susanka) Date: Sat Dec 3 00:44:21 2005 Subject: [bug-cscheme] scmutils Message-ID: Hi! I have recently purchased Sussman and Wisdom's book on Classical Mechanics and it seems it would be very useful to have the scmutils library to enhance MIT Scheme 7.6.1 (Win 98) which I downloaded and installed. Scheme itself seems pretty straightforward to learn, but I am having trouble locating this library. Is it only for the Linux version? Regards, Larry Susanka From ddcc at MIT.EDU Sat Feb 2 18:10:58 2002 From: ddcc at MIT.EDU (ddcc@MIT.EDU) Date: Sat Dec 3 00:44:21 2005 Subject: [bug-cscheme] Scheme on Windows should be console program Message-ID: Dear MIT Scheme People, Would you PLEASE make the Scheme interpreter on Windows a CONSOLE program? Console programs are executable on all the 32-bit versions of Windows. They are usually simpler than their graphical counterparts. Right now, Scheme on Windows is a graphical program. This seriously lessens its usefulness. A console-mode Scheme on Windows would make all the ports of Scheme more consistent with each other. You could cut back on maintaining separate documentation, and you can probably remove a lot of the GUI-specific code from your sources as well. In addition, console programs read from stdin and send output to stdout. That means that a console mode Scheme on Windows can have its input and output redirected, allowing it to interact with other development tools availible on Windows. For example, the Windows port of Emacs (which seems a lot more robust than Edwin) has a Scheme mode built in, just like the Unix versions of Emacs. However, the Windows Emacs is useless with Scheme because Emacs does not know how to control a GUI program. Consider also how most other compilers and debuggers on Windows are run: in console mode. Even in graphical commercial suites like MSVC, the underlying compiler can be called at the command line. A console program is appropriate because the interpreter should be separate from the interface to it. Edwin, for example, should stay a graphical program if you feel that is the most appropriate way for it to run; it would have no problem using a console-mode Scheme. Since the source code to Scheme is availible, I've already tried building a console-mode version. Unfortunately, the code was too sparsely documented for me to figure out which files were essential to the core of the interpreter itself, and which files managed the graphical interface. I would also ask you to make the Windows version of Scheme buildable with configure and make, to save people a lot of frustration. Many of the tools that used to be specific to Unix now also run natively on Windows, and the recent autoconf and automake can handle Windows-specific customizations as well. By using the same build enviornment, you can again make Scheme on all platforms more consistent, and in the process help make it more portable. I do hope that you will implement these changes soon. Yours truly, David From gjs at zurich.ai.mit.edu Sat Feb 2 19:53:58 2002 From: gjs at zurich.ai.mit.edu (Gerald Jay Sussman) Date: Sat Dec 3 00:44:21 2005 Subject: [bug-cscheme] scmutils In-Reply-To: (message from Larry Susanka on Fri, 1 Feb 2002 17:04:38 -0800) References: Message-ID: Hi, Mr. Susanka You can find the entire code we use in http://www-swiss.ai.mit.edu/~gjs/6946/linux-install.htm It includes sources, of course. We used this version for teaching our class last term. MIT Press has screwed up by losing the pointer from their web page to ours. I suppose I will have to go there and straighten them out. Have fun, and tell me how it goes. Gerald Jay Sussman From cph at zurich.ai.mit.edu Sat Feb 2 21:27:49 2002 From: cph at zurich.ai.mit.edu (Chris Hanson) Date: Sat Dec 3 00:44:21 2005 Subject: [bug-cscheme] Scheme on Windows should be console program In-Reply-To: (ddcc@MIT.EDU) Message-ID: Date: Sat, 2 Feb 2002 18:10:58 -0500 (EST) From: ddcc@MIT.EDU Would you PLEASE make the Scheme interpreter on Windows a CONSOLE program? Console programs are executable on all the 32-bit versions of Windows. They are usually simpler than their graphical counterparts. Right now, Scheme on Windows is a graphical program. This seriously lessens its usefulness. This isn't going to happen, for several reasons. First, I've been told that it's a little tricky building a console program that also has GUI support. Building either a plain console program or a plain GUI program is straightforward, but it's hard to build a mixed program, which is what we would need. Second, there's only one person working on this -- me -- and I have no time to spend on this kind of thing. I am busy implementing the new macro support, and after that I'll be reworking on a new module system. Third, when it does come time to allocate time for other projects, I have little interest in working on Windows, both because I don't use Windows, and because Windows is a non-free platform. My time is allocated to support the (free) platform that I use. Finally, I'm told that it's possible to compile the unix port of MIT Scheme using cygwin. I haven't tried this myself, but someone else has, and several fixes went into the code to support it. I imagine this would solve your problem. Alternatively, if you figure out how to make the code do what you want, and can do it in a way that doesn't break things, I'm willing to incorporate the changes into the code. You can't just delete the GUI support, because that's needed for Edwin and for graphics support. You'll have to figure out how to build a mixed console/GUI program, which is something I don't know how to do. There's an active Microsoft presence here on campus; the Microsoft I-Campus rep is two doors down the hall from me and is happy to answer questions like this, or to hook you up with other Microsoft experts who understand these things -- ask for help if you need it. I would be willing to spend a small amount of time, say an hour or so, showing you how the code is structured so you can do the work. But I'm not interested in actually doing the work myself. From mrice at ij.net Sun Feb 3 12:54:40 2002 From: mrice at ij.net (Michael Rice) Date: Sat Dec 3 00:44:21 2005 Subject: [bug-cscheme] MITScheme/call-with-values Message-ID: <000a01c1acdc$2548dfc0$802b04d1@mikerice> Example from "The Scheme Programming Language", R. Kent Dybvig, 2nd Ed., pg 100 splits a list into odd and even elements. (define split (lambda (ls) (if (or (null? ls) (null? (cdr ls))) (values ls '()) (call-with-values (lambda () (split (cddr ls))) (lambda (odds evens) (values (cons (car ls) odds) (cons (cadr ls) evens))))))) DrScheme: ---------------- > (split '(a b c d e f)) (a c e) (b d f) > MITScheme(7.6.0): ------------------ 1 ]=> (split '(a b c d e f)) ;Value 1: #[compiled-closure 1 ("global" #xA) #x55 #x79BC59 #xA4EB28] 1 ]=> Why the difference? M. Rice -------------- next part -------------- An HTML attachment was scrubbed... URL: http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020203/b6860c6a/attachment.htm From cph at zurich.ai.mit.edu Sun Feb 3 17:53:00 2002 From: cph at zurich.ai.mit.edu (Chris Hanson) Date: Sat Dec 3 00:44:22 2005 Subject: [bug-cscheme] MITScheme/call-with-values In-Reply-To: <000a01c1acdc$2548dfc0$802b04d1@mikerice> (mrice@ij.net) Message-ID: Date: Sun, 3 Feb 2002 12:54:40 -0500 From: "Michael Rice" Example from "The Scheme Programming Language", R. Kent Dybvig, 2nd Ed., pg 100 splits a list into odd and even elements. (define split (lambda (ls) (if (or (null? ls) (null? (cdr ls))) (values ls '()) (call-with-values (lambda () (split (cddr ls))) (lambda (odds evens) (values (cons (car ls) odds) (cons (cadr ls) evens))))))) DrScheme: ---------------- > (split '(a b c d e f)) (a c e) (b d f) > MITScheme(7.6.0): ------------------ 1 ]=> (split '(a b c d e f)) ;Value 1: #[compiled-closure 1 ("global" #xA) #x55 #x79BC59 #xA4EB28] 1 ]=> Why the difference? We never fully implemented multiple values. The support we have is a kludgy simulation. From cph at zurich.ai.mit.edu Sun Feb 3 17:55:55 2002 From: cph at zurich.ai.mit.edu (Chris Hanson) Date: Sat Dec 3 00:44:22 2005 Subject: [bug-cscheme] MIT Scheme/ #!optional arguments in lambda lists In-Reply-To: <000901c1acdc$24889d00$802b04d1@mikerice> (mrice@ij.net) Message-ID: Date: Mon, 28 Jan 2002 14:45:21 -0500 From: "Michael Rice" Hello, I'm having trouble using optional arguments in lambda lists. The function (define bozo (lambda (#!optional a) a)) per the documentation should return a default-object when called as follows (bozo) but instead results in an error. Is there something I must load or change in order to make this work? The optional-argument support leaves arguments "unassigned" when they aren't supplied, which means that they generate an error when referenced (in the interpreter, at least). One day this will be changed to use an ordinary value, but for now there's little that you can do. There are kludgey things you can do to get a similar effect, if you really need to do this. Alternatively, if you compile your code, the unassigned objects won't be trapped on reference. From simola at Dartmouth.EDU Tue Feb 5 00:12:48 2002 From: simola at Dartmouth.EDU (Daniel F. Simola) Date: Sat Dec 3 00:44:22 2005 Subject: [bug-cscheme] Scheme for Darwin Message-ID: Hello, This email is not concerning bugs in your current versions of Scheme, but rather sent regarding any work you might be doing to port Scheme to FreeBSD on MacOS X, aka Darwin. I noticed you did not have any PPC files, but you did have a FreeBSD port. Is there such a port in the works or planned? I think it would be a great thing. Thanks, Dan Simola ?03 Dartmouth College -------------- next part -------------- An HTML attachment was scrubbed... URL: http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020205/d461f9a7/attachment.htm From cph at zurich.ai.mit.edu Tue Feb 5 15:45:12 2002 From: cph at zurich.ai.mit.edu (Chris Hanson) Date: Sat Dec 3 00:44:22 2005 Subject: [bug-cscheme] Scheme for Darwin In-Reply-To: Message-ID: Date: Tue, 05 Feb 2002 00:12:48 -0500 From: "Daniel F. Simola" This email is not concerning bugs in your current versions of Scheme, but rather sent regarding any work you might be doing to port Scheme to FreeBSD on MacOS X, aka Darwin. I noticed you did not have any PPC files, but you did have a FreeBSD port. Is there such a port in the works or planned? I think it would be a great thing. No, there's no port to the PPC planned. It's a lot of work and it's not hardware that is used by our group. From schanschan2000 at yahoo.com Thu Feb 7 09:49:51 2002 From: schanschan2000 at yahoo.com (s chan) Date: Sat Dec 3 00:44:22 2005 Subject: [bug-cscheme] Macintosh Version of MIT Scheme Message-ID: <20020207144951.20097.qmail@web9307.mail.yahoo.com> To Whom it May Concern, I would like to know if there is a version of MIT Scheme available for MacOS 8.6 and MacOS X 10.0.4. More specifically, the PowerPC archictecture. Thanks, -S Chan __________________________________________________ Do You Yahoo!? Send FREE Valentine eCards with Yahoo! Greetings! http://greetings.yahoo.com From cph at zurich.ai.mit.edu Thu Feb 7 16:04:11 2002 From: cph at zurich.ai.mit.edu (Chris Hanson) Date: Sat Dec 3 00:44:22 2005 Subject: [bug-cscheme] Macintosh Version of MIT Scheme In-Reply-To: <20020207144951.20097.qmail@web9307.mail.yahoo.com> (schanschan2000@yahoo.com) Message-ID: Date: Thu, 7 Feb 2002 06:49:51 -0800 (PST) From: s chan I would like to know if there is a version of MIT Scheme available for MacOS 8.6 and MacOS X 10.0.4. More specifically, the PowerPC archictecture. There is not. We have no plans to port to the PowerPC. From Win at WinVacation.com Fri Feb 8 03:22:49 2002 From: Win at WinVacation.com (Win@WinVacation.Com) Date: Sat Dec 3 00:44:23 2005 Subject: [bug-cscheme] Win a Free Vacation to Cancun! Message-ID: <200202080822.g188MnY09297@www.hitcents.com> An HTML attachment was scrubbed... URL: http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020208/7ba5f5f8/attachment.html From DancingNude69 at aol.com Sun Feb 10 12:02:40 2002 From: DancingNude69 at aol.com (DancingNude69@aol.com) Date: Sat Dec 3 00:44:23 2005 Subject: [bug-cscheme] hey come bang from the back! Message-ID: <200202101702.LAA01836@paradox.dmsfs.org> Below is the result of your feedback form. It was submitted by (DancingNude69@aol.com) on Sunday, February 10, 19102 at 11:02:39 --------------------------------------------------------------------------- message: < a href="http://r.aol.com/cgi/redir-complex?url=http://server501.hypermart.net/pleasure69">Hey hun, what's up? I am Heather and I just finished my new page, Click here to check out my pics and watch me LIVE on webcam. Bye! ;-) --------------------------------------------------------------------------- From kjk122 at simmani.com Sun Feb 10 20:36:41 2002 From: kjk122 at simmani.com (=?ks_c_5601-1987?B?wvy1yMH2tbXA2rimw6O0wrjwwNM=?=) Date: Sat Dec 3 00:44:23 2005 Subject: [bug-cscheme] =?ks_c_5601-1987?B?W8irurhdICez18a8wfAgvLGwxcf1uO0nv6Egwvy/qcfPseI=?= Message-ID: <3c671f9f3c6ab360@relay3.kornet.net> (added by relay3.kornet.net) '³×ƼÁð ¼±°ÅÇõ¸í'¿¡ Âü¿©Çϱ⠿©·¯ºÐÀÇ Çã¶ô¾øÀÌ ¸ÞÀÏ µå¸° °ÍÀ» ¸ÕÀú »ç°ú µå¸³´Ï´Ù. bug-cscheme´ÔÀÇ ¸ÞÀÏÁÖ¼Ò(bug-cscheme@zurich.ai.mit.edu)´Â ÀÌ À¥ÆäÀÌÁö(http://compiler.kaist.ac.kr/courses/scheme.html)¿¡¼­ º¸°í ÀÌ·¸°Ô ¸ÞÀÏÀ» µå¸³´Ï´Ù. ¸ÞÀÏÁÖ¼Ò´Â ¹«ÀÛÀ§·Î ¸ð¾ÆÁø °ÍÀÌ¿À¸ç ±Û Àб⸦ ¿øÄ¡ ¾ÊÀ¸½Ã¸é °¢ site¿¡¼­ Á¦°øµÇ´Â ¼ö½Å°ÅºÎ¸¦ Ŭ¸¯ÇϽðųª, ¾Æ·¡ÀÇ ¼ö½Å°ÅºÎ¸¦ Ŭ¸¯ÇϽʽÿä. ¼ö½Å°ÅºÎ --> Á¸°æÇÏ´Â ³×ƼÁð ¿©·¯ºÐ, ¾È³çÇϽʴϱî! 'ÂüµÈ ÁöµµÀÚ¸¦ ã´Â ¸ðÀÓ' Ä«Æä°¡ Áö³­ 1¿ù 19ÀϺÎÅÍ ¿©·¯ºÐ¿¡°Ô 'ÁöµµÀÚ Ãßõ Âü¿©Çϱâ' Ä·ÆäÀÎÀ» ÆîÄ£ °á°ú´Â ÆÜ °í¹«ÀûÀ̾ú½À´Ï´Ù. ¿©·¯ºÐÀÌ Á¦½ÃÇÑ ´ëÅë·É ´ö¸ñÀº Á¤¸» ´Ù¾çÇϰí, ±×·¯¸é¼­ ³ª¶ó¸¦ °ÆÁ¤ÇÏ´Â Àǰß, ±× °¡¿îµ¥¼­µµ °æÁ¦¸¦ Àß ¾Æ´Â '°æÁ¦ ´ëÅë·É' 'CEO ´ëÅë·É'À» ¿øÇÏ´Â ¸ñ¼Ò¸®°¡ ¸¹¾Ò½À´Ï´Ù. ±×·¯³ª Àú·¯³ª ³×ƼÁð ¿©·¯ºÐÀÇ ¶æÀº ¹ÎÁÖ´çÀÇ °æ¿ì, ±¹¹ÎÂü¿©°æ¼±Á¦·Î À̾îÁ®¾ß ±× ºûÀ» ¹ßÇÒ ¼ö°¡ ÀÖ½À´Ï´Ù. ¹ÎÁÖ´ç¿¡¼­´Â ÀÌ¹Ì Áö³­ 7ÀϺÎÅÍ ±¹¹Î¼±°ÅÀ뫆 °ø¸ð¿¡ µé¾î°¡, ¿À´Â 25ÀÏ Á¦ÁÖ( 26ÀÏ ¿ï»ê ±¤ÁÖ, 27ÀÏ ´ëÀü)¸¦ ù¸Ó¸®·Î 4¿ù 9ÀÏ(¼­¿ï)±îÁö Àü±¹¿¡¼­ ÀϹݱ¹¹ÎÀ» »ó´ë·Î 3¸¸ 5õ¸íÀÇ ¼±°ÅÀδÜÀ» Ãß÷, ¼±¹ßÄÉ µÅ ÀÖ½À´Ï´Ù. ¿ì¸® ³×ƼÁðµéÀº ¹ÎÁÖ´ç ȨÆäÀÌÁö(http://www.minjoo.or.kr)·Î Á¢¼ÓÇϼż­ ´ë¸ÁÀÇ '³×ƼÁð ¼±°Å Çõ¸í'¿¡ Âü¿©ÇϽñ⸦ °£°îÈ÷ ´çºÎÇÕ´Ï´Ù. ¶ÇÇÑ 'ÂüµÈ ÁöµµÀÚ¸¦ ã´Â ¸ðÀÓ' Ä«Æä(http://cafe.daum.net/TrueLeader)ÀÇ Ãßõ°Ô½ÃÆÇ¿¡µµ µé¾î°¡, ±ÙÀÚ¿¡ ½Ç½ÃµÇ°í ÀÖ´Â ´ë¼± Èĺ¸ TVÅä·Ð °á°ú ¾î´À È帰¡ ´ÙÀ½ÀÇ 3°³ Ç׸ñ¿¡ ÀûÇÕÇÑÁöµµ ÀÀ´äÇØ ÁÖ½Ã¸é °í¸¿°Ú½À´Ï´Ù. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/3f75ce32/attachment.htm From info at lefascine.it Mon Feb 11 13:27:38 2002 From: info at lefascine.it (LE FASCINE) Date: Sat Dec 3 00:44:24 2005 Subject: [bug-cscheme] (no subject) Message-ID: <20020211183147.MIFF10456.fep43-svc.tin.it@oemcomputer> An HTML attachment was scrubbed... URL: http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/d629bcfb/attachment.html From P.S.Cowpertwait at massey.ac.nz Mon Feb 11 23:03:38 2002 From: P.S.Cowpertwait at massey.ac.nz (Cowpertwait, Paul) Date: Sat Dec 3 00:44:24 2005 Subject: [bug-cscheme] MIT Scheme Message-ID: <98B01D2717B9D411B38F0008C7840931070B5640@its-xchg2.massey.ac.nz> Is there a straightforward way of producing standalone .exe files under Windows NT from MIT Scheme .scm files? The .com files produced using the command cf do not run as standalone, and the Scheme to C type programs do not accept the MIT extension. Any help would be appreciated. _____________________________________ Paul S.P. Cowpertwait IIMS, Massey University, Albany, Private Bag 102 904 North Shore Mail Centre Auckland, NZ Tel (+64) (9) 443 9799 ext 9488 http://www.massey.ac.nz/~pscowper _____________________________________ From cph at zurich.ai.mit.edu Mon Feb 11 23:09:30 2002 From: cph at zurich.ai.mit.edu (Chris Hanson) Date: Sat Dec 3 00:44:24 2005 Subject: [bug-cscheme] MIT Scheme In-Reply-To: <98B01D2717B9D411B38F0008C7840931070B5640@its-xchg2.massey.ac.nz> (P.S.Cowpertwait@massey.ac.nz) Message-ID: Date: Tue, 12 Feb 2002 17:03:38 +1300 From: "Cowpertwait, Paul" Is there a straightforward way of producing standalone .exe files under Windows NT from MIT Scheme .scm files? The .com files produced using the command cf do not run as standalone, and the Scheme to C type programs do not accept the MIT extension. Sorry, there's no way to do that. From Jimmy at StartRemodeling.com Tue Feb 12 00:28:32 2002 From: Jimmy at StartRemodeling.com (StartRemodeling.com) Date: Sat Dec 3 00:44:31 2005 Subject: [bug-cscheme] We need Architects, Designers and Specialty Contractors Message-ID: <1915590-22002221252832150@StartRemodeling.com> Skipped content of type multipart/alternative-------------- next part -------------- A non-text attachment was scrubbed... Name: new4.gif Type: image/gif Size: 1260 bytes Desc: new4.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/new4.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: cleardot.gif Type: image/gif Size: 43 bytes Desc: cleardot.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/cleardot.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: cleardot.gif Type: image/gif Size: 43 bytes Desc: cleardot.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/cleardot-0001.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: cleardot.gif Type: image/gif Size: 43 bytes Desc: cleardot.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/cleardot-0002.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: top.htm_txt_top_right11.gif Type: image/gif Size: 1347 bytes Desc: top.htm_txt_top_right11.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/top.htm_txt_top_right11.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: cleardot.gif Type: image/gif Size: 43 bytes Desc: cleardot.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/cleardot-0003.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: 11logo4_2_3_1.gif Type: image/gif Size: 10056 bytes Desc: 11logo4_2_3_1.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/11logo4_2_3_1.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: space.gif Type: image/gif Size: 43 bytes Desc: space.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/space.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: mini_house6.gif Type: image/gif Size: 100 bytes Desc: mini_house6.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/mini_house6.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: mini_house6.gif Type: image/gif Size: 100 bytes Desc: mini_house6.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/mini_house6-0001.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: mini_house6.gif Type: image/gif Size: 100 bytes Desc: mini_house6.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/mini_house6-0002.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: mini_house6.gif Type: image/gif Size: 100 bytes Desc: mini_house6.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/mini_house6-0003.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: mini_house6.gif Type: image/gif Size: 100 bytes Desc: mini_house6.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/mini_house6-0004.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: mini_house6.gif Type: image/gif Size: 100 bytes Desc: mini_house6.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/mini_house6-0005.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: mini_house6.gif Type: image/gif Size: 100 bytes Desc: mini_house6.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/mini_house6-0006.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: mini_house6.gif Type: image/gif Size: 100 bytes Desc: mini_house6.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/mini_house6-0007.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: mini_house6.gif Type: image/gif Size: 100 bytes Desc: mini_house6.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/mini_house6-0008.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: mini_house6.gif Type: image/gif Size: 100 bytes Desc: mini_house6.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/mini_house6-0009.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: mini_house6.gif Type: image/gif Size: 100 bytes Desc: mini_house6.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/mini_house6-0010.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: mini_house6.gif Type: image/gif Size: 100 bytes Desc: mini_house6.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/mini_house6-0011.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: mini_house6.gif Type: image/gif Size: 100 bytes Desc: mini_house6.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/mini_house6-0012.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: mini_house6.gif Type: image/gif Size: 100 bytes Desc: mini_house6.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/mini_house6-0013.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: mini_house6.gif Type: image/gif Size: 100 bytes Desc: mini_house6.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/mini_house6-0014.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: mini_house6.gif Type: image/gif Size: 100 bytes Desc: mini_house6.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/mini_house6-0015.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: mini_house6.gif Type: image/gif Size: 100 bytes Desc: mini_house6.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/mini_house6-0016.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: mini_house6.gif Type: image/gif Size: 100 bytes Desc: mini_house6.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/mini_house6-0017.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: mini_house6.gif Type: image/gif Size: 100 bytes Desc: mini_house6.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/mini_house6-0018.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: mini_house6.gif Type: image/gif Size: 100 bytes Desc: mini_house6.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/mini_house6-0019.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: mini_house6.gif Type: image/gif Size: 100 bytes Desc: mini_house6.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/mini_house6-0020.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: mini_house6.gif Type: image/gif Size: 100 bytes Desc: mini_house6.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/mini_house6-0021.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: mini_house6.gif Type: image/gif Size: 100 bytes Desc: mini_house6.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/mini_house6-0022.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: mini_house6.gif Type: image/gif Size: 100 bytes Desc: mini_house6.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/mini_house6-0023.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: mini_house6.gif Type: image/gif Size: 100 bytes Desc: mini_house6.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/mini_house6-0024.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: mini_house6.gif Type: image/gif Size: 100 bytes Desc: mini_house6.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/mini_house6-0025.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: mini_house6.gif Type: image/gif Size: 100 bytes Desc: mini_house6.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/mini_house6-0026.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: mini_house6.gif Type: image/gif Size: 100 bytes Desc: mini_house6.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/mini_house6-0027.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: mini_house6.gif Type: image/gif Size: 100 bytes Desc: mini_house6.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/mini_house6-0028.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: mini_house6.gif Type: image/gif Size: 100 bytes Desc: mini_house6.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/mini_house6-0029.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: mini_house6.gif Type: image/gif Size: 100 bytes Desc: mini_house6.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/mini_house6-0030.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: builtriteplaque1.jpg Type: image/jpeg Size: 3380 bytes Desc: builtriteplaque1.jpg Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/builtriteplaque1.jpg -------------- next part -------------- A non-text attachment was scrubbed... Name: mini_house6.gif Type: image/gif Size: 100 bytes Desc: mini_house6.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/mini_house6-0031.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: mini_house6.gif Type: image/gif Size: 100 bytes Desc: mini_house6.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/mini_house6-0032.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: mini_house6.gif Type: image/gif Size: 100 bytes Desc: mini_house6.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/mini_house6-0033.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: mini_house6.gif Type: image/gif Size: 100 bytes Desc: mini_house6.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/mini_house6-0034.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: mini_house6.gif Type: image/gif Size: 100 bytes Desc: mini_house6.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/mini_house6-0035.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: mini_house6.gif Type: image/gif Size: 100 bytes Desc: mini_house6.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/mini_house6-0036.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: acontrgif.gif Type: image/gif Size: 5334 bytes Desc: acontrgif.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/acontrgif.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: manwithdrill.gif Type: image/gif Size: 3090 bytes Desc: manwithdrill.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/manwithdrill.gif -------------- next part -------------- A non-text attachment was scrubbed... Name: logoPwrdSvcMagic_v01a.gif Type: image/gif Size: 746 bytes Desc: logoPwrdSvcMagic_v01a.gif Url : http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020211/b66f18c8/logoPwrdSvcMagic_v01a.gif From Jimmy at StartRemodeling.com Wed Feb 13 16:56:11 2002 From: Jimmy at StartRemodeling.com (StartRemodeling.com) Date: Sat Dec 3 00:44:31 2005 Subject: [bug-cscheme] We need Architects, Designers and Specialty Contractors Message-ID: <56756-220022313215611760@StartRemodeling.com> Hello, my name is Jim McDonald, President of http://www.StartRemodeling.com. We have begun a campaign to reach out to Quality Contractors - Nationwide. We have thousands of qualified leads that need attention. We need Architects, Designers and Specialty Contractors to assist our customers and are attempting build some long term relationships with Top Notch companies to assist us I am sending this email to ask you for your assistance. Here at http://www.StartRemodeling.com, we generate thousands of leads from homeowners visiting our site and bthey utilize ServiceMagic.com and their large staff to perform fulfillment for us. We specialize in sending qualified homeowners to them looking for QUALITY CONTRACTORS. However, it seems that a large portion of our visitors are looking for Architects, Home Designers and Specialty contractors of all kinds and we need companies to take these leads. If you are interested in more business, and QUALIFIED LEDS, we have created a page for you to visit for more information at http://www.startremodeling.com/SM_contractor_page.htm. Not only will you be able to find out anything and everything about our program, but we have searched the net for resources that we believe will help you in many facets of your business and make it easier for you to get around the web to locate important information. If you have any questions, feel free to contact me at your convenience. Jimmy McDonald jimmy@StartRemodeling.com http://www.StartRemodeling.com Increasing the Quality of your Life by Improving where you Live it. From hsabs at kornet.net Thu Feb 14 10:25:41 2002 From: hsabs at kornet.net (HS (ÁÖ)) Date: Sat Dec 3 00:44:31 2005 Subject: [bug-cscheme] (±¤¡¡°í) [°æ¿µÁø Ãʺù] <<¾î´À Áß¼Ò º¥Ã³ ±â¾÷>> Message-ID: <200202141527.KAA04143@zurich.ai.mit.edu> An HTML attachment was scrubbed... URL: http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020215/9c8fb5ed/attachment.htm From va_norton at yahoo.com Fri Feb 15 20:38:32 2002 From: va_norton at yahoo.com (Alan Norton) Date: Sat Dec 3 00:44:31 2005 Subject: [bug-cscheme] configuring heap size for windows Message-ID: <3C6DB818.F96F7D54@yahoo.com> Can you please tell me how to increase the heap size in the windows implementation? I can't find any info about this in the documentation, and I run out of memory whenever I try to do any serious examples. It seems to default to a very small heap. Thanks, -Alan From va_norton at yahoo.com Fri Feb 15 20:39:47 2002 From: va_norton at yahoo.com (Alan Norton) Date: Sat Dec 3 00:44:31 2005 Subject: [bug-cscheme] configuring heap size for windows Message-ID: <3C6DB863.DBD22C37@yahoo.com> Can you please tell me how to increase the heap size in the windows implementation? I can't find any info about this in the documentation, and I run out of memory whenever I try to do any serious examples. It seems to default to a very small heap. Thanks, -Alan From cph at zurich.ai.mit.edu Fri Feb 15 20:42:52 2002 From: cph at zurich.ai.mit.edu (Chris Hanson) Date: Sat Dec 3 00:44:31 2005 Subject: [bug-cscheme] configuring heap size for windows In-Reply-To: <3C6DB818.F96F7D54@yahoo.com> (va_norton@yahoo.com) Message-ID: Date: Fri, 15 Feb 2002 18:38:32 -0700 From: "Alan Norton" Can you please tell me how to increase the heap size in the windows implementation? I can't find any info about this in the documentation, and I run out of memory whenever I try to do any serious examples. It seems to default to a very small heap. Please read the User's Guide, which has detailed information about this. Look for the "-heap" command-line option. From gisli at 1expressmall.com Sat Feb 16 04:26:13 2002 From: gisli at 1expressmall.com (Gisli V Gislason) Date: Sat Dec 3 00:44:31 2005 Subject: [bug-cscheme] When it comes to your hard earn money and you spending it on line. We care ! Message-ID: <200202160428578.SM02128@gisli> Dear recpient We at 1expressmall.com care for every hard earned dollar that you make and would like to, only if you are looking to buy on the web, make some suggestions reguarding stores that we, with our extensive research know that you can trust and feel that we can with out a doubt point you towards . We are developing our site with our customers exlusively in mind, not what we might make out of the final sale, in order to do this properly we have to go out side the normal channels and find the sites that go out of theyr way to get you, our customers , the best deal. Please if you are not satisfied with the results that you are getting from our site ignore us alltogether and look to alternetive resources. In the comming weeks you will be able to access information that only proffessionals usually have access to and will be able to use that information to your atvnatage. As you can see on the homepage right now you can access the biggest search engines along with some email homepages and information about culture ,medical information and pharmacies online wich no other site has. Soon you will be able to get your most trusted stores right on the home page ( on the bottom section ) and you can give us your feedback on sites that you think that deserve to be reguarded as first rate sites and that you know that can be trusted. We will make sure that our site is clean and will never be tanted with any materials that appropriate for everybody, in order to make life easier on parents that are watching theyr kids struggling with theyr homework we will have resources at theyr disposal that will make the understanding of a particular subject easier to understand, some of the sites do have a monthly fee to them but consitering the atvantages it will have for the children, 5-10 dollars a month can not be consitered a complication when it comes to our childrens future. Please look over our site and let us know if there is anything that you would consiter crucial to a home page that be made to your every whim and at no time be shy to send us your commends. In fullest respect Gisli V Gislason http://www.1expressmall.com From EigenDad at aol.com Tue Feb 19 12:49:35 2002 From: EigenDad at aol.com (EigenDad@aol.com) Date: Sat Dec 3 00:44:32 2005 Subject: [bug-cscheme] can not get started using scheme Message-ID: <66.1c4e703f.29a3ea2f@aol.com> The only things that I can do is start scheme from the start menu of my pc and close scheme from Edwin using my mouse to close the window. The C-h command doesn't work, nor does the identify-world procedure. The following information was taken from Edwin: Scheme saved on Saturday January 29.2000 at 8:21:45 PM Release 7.5.1 Microcode 11.165 Runtime 14.180 Win32 1.5 Edwin 3.99 6.001 15.30 I first installed scheme on my E: drive, then uninstalled it, now it is installed on my C: drive; there was no difference trying to use it. Any help will be appreciated. Thank you. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020219/4c249e9c/attachment.html From cph at zurich.ai.mit.edu Tue Feb 19 12:53:10 2002 From: cph at zurich.ai.mit.edu (Chris Hanson) Date: Sat Dec 3 00:44:32 2005 Subject: [bug-cscheme] can not get started using scheme In-Reply-To: <66.1c4e703f.29a3ea2f@aol.com> (EigenDad@aol.com) Message-ID: Date: Tue, 19 Feb 2002 12:49:35 EST From: EigenDad@aol.com The only things that I can do is start scheme from the start menu of my pc and close scheme from Edwin using my mouse to close the window. The C-h command doesn't work, nor does the identify-world procedure. The following information was taken from Edwin: Scheme saved on Saturday January 29.2000 at 8:21:45 PM Release 7.5.1 Microcode 11.165 Runtime 14.180 Win32 1.5 Edwin 3.99 6.001 15.30 I first installed scheme on my E: drive, then uninstalled it, now it is installed on my C: drive; there was no difference trying to use it. Any help will be appreciated. Thank you. We don't support that version of MIT Scheme; it's too old and was not one of our official releases. Please download a recent version from our web page at http://www.swiss.ai.mit.edu/projects/scheme/mit/ If you are still having trouble let us know. From gricen at intizen.com Sat Feb 23 12:56:17 2002 From: gricen at intizen.com (Æ÷Å»·Î) Date: Sat Dec 3 00:44:32 2005 Subject: [bug-cscheme] ÀúÈñ ¿¬º¯¿¡¼­´Â ÀÌ·± Æ÷Å»À» ÃÖ°í·Î ÃÄÁÜ´Ù~~~ [È«º¸] Message-ID: <200202231756.MAA02361@zurich.ai.mit.edu> An HTML attachment was scrubbed... URL: http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020224/a176383b/attachment.htm From only1249 at yahoo.com Tue Feb 26 09:00:00 2002 From: only1249 at yahoo.com (only1249@yahoo.com) Date: Sat Dec 3 00:44:32 2005 Subject: [bug-cscheme] =?ISO-8859-1?B?KMirurgpw9awrcirurjHwbfOsde3pSEhyKu6uLDGwaSzoS4=?= Message-ID: <200202261400.JAA23541@zurich.ai.mit.edu> -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- (This safeguard is not inserted when using the registered version) -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- (This safeguard is not inserted when using the registered version) -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------------------------------------------------------------- -------------- next part -------------- An HTML attachment was scrubbed... URL: http://zurich.csail.mit.edu/pipermail/bug-cscheme/attachments/20020226/7c43d6c4/attachment.html From jblazi at hotmail.com Thu Feb 28 14:05:45 2002 From: jblazi at hotmail.com (Janos Blazi) Date: Sat Dec 3 00:44:32 2005 Subject: [bug-cscheme] Problem with Scheme 7.6 under Win2000 Message-ID: I am using Windows2000 (a German version). I have downloaded Scheme 7.6, installed it but it does not work. I get messages which say that several traps have occured. What can I do? Janos Blazi jblazi@hotmail.com _________________________________________________________________ Send and receive Hotmail on your mobile device: http://mobile.msn.com From cph at zurich.ai.mit.edu Thu Feb 28 14:55:43 2002 From: cph at zurich.ai.mit.edu (Chris Hanson) Date: Sat Dec 3 00:44:32 2005 Subject: [bug-cscheme] Problem with Scheme 7.6 under Win2000 In-Reply-To: (jblazi@hotmail.com) Message-ID: Date: Thu, 28 Feb 2002 19:05:45 +0000 From: "Janos Blazi" I am using Windows2000 (a German version). I have downloaded Scheme 7.6, installed it but it does not work. I get messages which say that several traps have occured. What can I do? Does your machine have an AMD Athlon processor? If so, we know about the problem and hope to have it fixed in the next release. From cph at zurich.ai.mit.edu Thu Feb 28 15:14:43 2002 From: cph at zurich.ai.mit.edu (Chris Hanson) Date: Sat Dec 3 00:44:32 2005 Subject: [bug-cscheme] Problem with Scheme 7.6 under Win2000 In-Reply-To: (jblazi@hotmail.com) Message-ID: Date: Thu, 28 Feb 2002 20:09:56 +0000 From: "Janos Blazi" Thank you for this really *very fast* response. You're welcome. Yes, I use an AMD Atlon. OK, thanks. I'm glad this isn't a new problem. When is the next release due? I think it will be out sometime this month. Most of the work is done. But it is a busy month for me, so I can't be certain. Would 7.5 run? No. The problem is a bug in the Athlon. We have had to make changes to MIT Scheme to avoid the bug. Only models 1, 3, and 4 of the Athlon processor family are broken. According to AMD, newer models do not have this problem.