choose whether .jsf produces valid HTML or XHTML?023 (1/24/2007 5:55:14 PM) comp.lang.java.programmer Hi, searching the web about HTML validation of .jsp pages produced from jsf, I have seen people's posted snippets contain either: or and I.e. JSF can apparently produce either HTML or XHTML style output. ... Joerg
how to code-walk EVAL-WHEN?224 (5/15/2006 9:46:10 AM) comp.lang.lisp Hi, let's suppose I'm writing a killer application which is internally based on a code-walker performing code transformation. The problem is, I don't know how to walk all of CL special operators. Esp. I don'... Joerg
destructuring-bind on infinite lists?2524 (2/23/2006 5:29:20 PM) comp.lang.lisp Hi, Nathan Froyd submitted a bug-report to clisp about the following: (defvar *vars* '#1=(a b c d e . #1#)) (destructuring-bind (a b c d e &rest ignore) *vars* (list a b c d e)) ;add (declare (ignore ignore))... Joerg
recognizing a type specification4724 (8/2/2005 9:22:25 AM) comp.lang.lisp Hi, when there's a need to peek at DECLARE expressions, how does one portably recognize shortcut type specifiers from other implementation-specific declarations? E.g. (declare (fixnum my-var)) ; aka (declare ... Joerg
loop variable value in finally forms?434 (5/13/2005 3:51:23 PM) comp.lang.lisp Hi, I stumbled across the following: (loop for l on '(a b c d) by #'cddr do (prin1 l) finally (print l)) (A B C D)(C D) NIL ; NIL in finally. What would you think? Jorg Hohle Telekom/T-Systems Technology Ce... Joerg
setf evaluation order?921 (2/1/2005 6:05:53 PM) comp.lang.lisp Hi, is there a mandated evaluation order for SETF? I would naively have expected left to right order to generally apply, even when places are involved, yet CLISP 2.33 and CormanLisp 2.0 yield different result... Joerg
what are allowed special forms? (CLHS clarification)4127 (1/13/2005 2:50:49 PM) comp.lang.lisp Hi, I'd like to restart a thread from June 2000 (with a similar question being asked in 2002), found by searching Google groups for special-operator-p implementation macro group:comp.lang.lisp The problem I... Joerg
legal LOOP (collect into x initially setq x y)?127 (12/6/2004 4:24:53 PM) comp.lang.lisp Hi, Is there some restriction on LOOP variables named via value accumulation clauses? All I saw is mention of them being "bound as by the construct with". However, in both Iterate-1.0.9 and CLISP's LOOP, this... Joerg
macro flow from inside to outside426 (11/26/2004 3:47:14 PM) comp.lang.lisp Hi, I wonder whether it's possible to avoid a full code walker[1] when implementing the following pattern somewhat similar to several COLLECTOR macros[2] out there. Syntax: (bag ... (containing item &optional... Joerg
clisp build question...328 (6/5/2007 4:00:06 PM) comp.lang.lisp Greetings everyone, I am new to lisp development and have a question I was wondering if someone could help me with. I am trying to find the latest windows build of clisp. I downloaded the versions listed on sou... apalomba(2)
(setf) order of evaluation of arguments1433 (6/3/2007 8:59:25 AM) comp.lang.lisp I'm trying to write a macro that defines functions. Basically, my macro is used to define "cacheable" functions; that is, functions whose results for a given set of arguments will always evaluate to the same ... dking(2)
FSet/CL 1.0 released!734 (5/28/2007 5:12:47 PM) comp.lang.lisp I am pleased to announce the first release of FSet/CL, a functional set-theoretic collections library for Common Lisp. "Functional" means that update operations return a new collection rather than modifying th... FSet.SLB(346)
Opposite of ~^ FORMAT Directive524 (4/28/2007 11:27:07 PM) comp.lang.lisp Hi, Is it possible to make FORMAT print a phrase just in the first element of a ~{...~} list iteration. (Like opposite of ~^.) Regards. ... volkan.yazici(104)
advice about foreign function interfaces1423 (4/18/2007 9:35:22 PM) comp.lang.lisp Hi, I find that I need to call some Fortran (and occasionally C) code from my Lisp programs (mostly linear algebra and other numerical code). If I understand correctly, most Lisp implementations have foreign ... tkpapp(975)
A Question about Concurrency and Pure Lisp729 (4/2/2007 4:06:38 PM) comp.lang.lisp Hello everyone, An interesting question: Are these two expressions fully equivalent? ( ... e ...) and ( ... (future e) ... ), e is a pure lisp expression, so no side effect, no printing. (future e) means tha... xilai.lehaha(1)
CLISP + xinetd = Instant failure.1820 (1/2/2007 3:19:21 AM) comp.lang.lisp I wanted to make a simple HTTP server in CLISP using xinetd as the front end. (format t "HTTP/1.1 200 OK~%~%") (loop :for line = (remove #\Return (read-line) :from-end t :count 1) :until (zerop (l... nathan_baum(228)
CLISP + Araneida issues.1118 (12/29/2006 9:36:55 PM) comp.lang.lisp There is some buggy behavior in the interaction between Araneida and CLISP, whose ultimate consequence is the failure of proper page flow due to aborted TCP connections. One way to sweep the buggy behavior und... kkylheku(2499)
heavy-weight macros436 (9/24/2006 2:10:55 PM) comp.lang.lisp Hello, All! what's best way to write macros that require complex state for each macroexpanded instance? i've expain what do i mean :). imagine DSL used to do SQL-like queries. like (sql:select [a] (from [t]... udodenko(1040)
(read-from-string "#.(values) 42")5242 (9/21/2006 6:14:45 PM) comp.lang.lisp Considering: 2.2 Reader Algorithm The reader macro function may return zero values or one value. If one value is returned, then that value is returned as the result of the read operation; the al... pjb(7647)