Re: #;
- From: Pascal Bourguignon <pjb@xxxxxxxxxxxxxxxxx>
- Date: Mon, 31 Dec 2007 05:52:36 +0100
Kent M Pitman <pitman@xxxxxxxxxxx> writes:
(defun foo (n)
(cond
#; treat this special case later
This previous line makes no sense since it is not code. Perhaps
you meant
#; ; treat this special case later.
#; ((= n 1)
#; (foo-1 n))
I'm not sure I totally see the point of this. I can see it makes the
lines easier to see visually on the left margin,
If we want visual markers, why not just use the normal comment,
somewhat more visually:
;;;;;;;;;;; ((= n 1)
;;;;;;;;;;; (foo-1 n))
Note that emacs lets you easily comment and uncomment (C-u 11 M-; to
get 11 semicolons).
Or you could write:
;;;LATER;;; ((= n 1)
;;;LATER;;; (foo-1 n))
--
__Pascal Bourguignon__ http://www.informatimago.com/
Until real software engineering is developed, the next best practice
is to develop with a dynamic system that has extreme late binding in
all aspects. The first system to really do this in an important way
is Lisp. -- Alan Kay
.
- References:
- Prev by Date: Re: #;
- Next by Date: Re: RFC: Extending method specializers
- Previous by thread: Re: #;
- Next by thread: Re: #;
- Index(es):
Relevant Pages
|