From ... From: Erik Naggum Subject: Re: Lisp Syntax #| ??? Date: 2000/08/09 Message-ID: <3174810853939672@naggum.net>#1/1 X-Deja-AN: 656349187 References: <3988AB66.F3793F32@yahoo.com> <8mp7pp$1fvi$1@counter.bik-gmbh.de> mail-copies-to: never Content-Type: text/plain; charset=us-ascii X-Complaints-To: newsmaster@eunet.no X-Trace: oslo-nntp.eunet.no 965830272 11803 195.0.192.66 (9 Aug 2000 14:11:12 GMT) Organization: Naggum Software; vox: +47 8800 8879; fax: +47 8800 8601; http://naggum.no; http://naggum.net User-Agent: Gnus/5.0803 (Gnus v5.8.3) Emacs/20.7 Mime-Version: 1.0 NNTP-Posting-Date: 9 Aug 2000 14:11:12 GMT Newsgroups: comp.lang.lisp * Martin Cracauer | The real comments in Lisp are to-end-of-liners with ';' | | #|...|# is an example of a reader macro in action, using it to | implement multiline comments. You may be surprised, but ; is just a reader macro, too. I fail to see how you can support "real" in any way. What's unreal about #||#? | Temporarily disabling code like this is usually done with a | different reader macro instead: Some prefer it this way, but I haven't found any statistics that support the "usually". Where did you find yours? | This is usually preferrable to #|...|# since the editor's | indentiation support still knows how to format the disabled code. See above for "usually". _Your_ preferences are noted, but some indentation support packages will indent commented code correctly, in the understanding that you don't comment out text with #| ... |#. For those cases, use several ;'s at the beginning of the line. #:Erik -- If this is not what you expected, please alter your expectations.