Path: utzoo!utgpu!watserv1!watmath!att!ucbvax!MITCH.ENG.SUN.COM!wmb From: wmb@MITCH.ENG.SUN.COM (Mitch Bradley) Newsgroups: comp.lang.forth Subject: multi-line comments Message-ID: <9006041403.AA15819@ucbvax.Berkeley.EDU> Date: 4 Jun 90 07:08:07 GMT Sender: daemon@ucbvax.BERKELEY.EDU Reply-To: Mitch Bradley Organization: The Internet Lines: 20 > > > "(" handles multi-line comments when loading from text files. > Ick. Multi-line comments are a botch anyway, and this prevents some > interesting (in terms of hacking the implementation) uses. I polled a lot of people, vendors and users alike, and the feeling in favor of multi-line comments was overwhelming. The tools to create whatever comment style you prefer are now present, with the recent extensions to QUERY, the new word PARSE, and the precision with which the semantics of text file loading is now specified. > What makes you think [ Setjmp and longjmp require the allocation of > global memory ] ? As Henk Lengeveld has also pointed out, the variable of type "jmp_buf" which allows longjmp() to rendezvous with setjmp() is a global variable in the sense that its storage must be allocated statically. Its name scope may be limited to a particular file, but its storage space is global. Mitch