Since 5/5/2012 6:38:30 PM, budden01 has written 9 articles and participated in 66 conversations. budden01 signature: budden01
budden01's articles:
Items(9) /1
Sbcl 1.0.22 - failed to test cllib1233 (11/11/2008 2:34:53 PM) comp.lang.lisp just did (require :cllib) Error was: The value ":,/|" is not of type (OR (SIMPLE-ARRAY CHARACTER #1=(5)) (SIMPLE-ARRAY NIL #1#) (SIMPLE-BASE-STRING 5)). [Condition of type TYPE-ERROR] Restarts: 0:... budden
is it ok to (setf (get :const :prop) :val)?3525 (11/2/2008 4:20:00 PM) comp.lang.lisp Hi group! Just the subject. CLHS says it is ok. Is it really ok in implementations? It is needed to fix iterate's conflict to other packages defining 'for macro. It if is ok, I'll do (in-package :itera... budden
(a-of (b-of c)) is good333 (11/1/2008 12:49:54 PM) comp.lang.lisp This is a reply to http://groups.google.com/group/comp.lang.lisp/msg/38106dde37c4801c Lars Rune N=F8stdal wrote: > I use (c-of (b-of a)), but it's more common to use or say (c (b a)). You're doing right. I w... budden
Symbol clashes: how to avoid them. Part 2322 (10/31/2008 1:53:13 PM) comp.lang.lisp Hi Group! This topic originates from the following discussion: http://groups.google.com/group/comp.lang.lisp/browse_thread/thread/00e2aa56a0f84b20/feaa03484c1c653a?lnk=raot#feaa03484c1c653a But in the course... budden
use-package & name conflict: why they are not deferred? #24237 (10/24/2008 8:30:01 PM) comp.lang.lisp Hallo, group! Yes, I have read CL standard. But I think standard is not well defined in that: (defpackage :p1 (:exports :sym :sym1)) (defpackage :p2 (:exports :sym :sym2)) (use-package :p1) (use-package :p2) ... budden
use-package & name conflict: why they are not deferred?331 (10/24/2008 8:28:25 PM) comp.lang.lisp Hallo, group! Yes, I have read CL standard. But I think standard is stupid in that: (defpackage :p1 (:exports :sym :sym1)) (defpackage :p2 (:exports :sym :sym2)) (use-package :p1) (use-package :p2) ; error oc... budden
sbcl bug in ppsition and/or find with :start, :end and :key946 (9/23/2008 3:14:07 PM) comp.lang.lisp Good time of day! I failed to post this to sbcl-help mail list, so posting here > (find :a '((:c) 1) :start 0 :end 1 :key #'car) =>error (attempted to call (car 1)) And even >(defun foo () (declare (notinlin... budden
use-package & name conflict: why they are not deferred? #24237 (10/24/2008 8:30:01 PM) comp.lang.lisp Hallo, group! Yes, I have read CL standard. But I think standard is not well defined in that: (defpackage :p1 (:exports :sym :sym1)) (defpackage :p2 (:exports :sym :sym2)) (use-package :p1) (use-package :p2) ... budden01(75)
Substructure-sharing in DEFPACKAGE.239 (10/25/2008 12:56:21 AM) comp.lang.lisp What does everyone think of this: (defpackage :p (:use :cl) (:shadow . #=(cons car cdr)) (:export . #1#)) I.e. export exactly those symbols which are shadowed. ... kkylheku(2499)
"Essential lisp utilities": where are they?4725 (10/31/2008 1:44:11 PM) comp.lang.lisp Hello, I recall seeing a library of "essential lisp utilities", but I just spent a better part of an hour going through cliki, my bookmarks, installed libraries, and the web, and other than suspects such as tr... mirko.vukovic(404)
Symbol clashes: how to avoid them. Part 2322 (10/31/2008 1:53:13 PM) comp.lang.lisp Hi Group! This topic originates from the following discussion: http://groups.google.com/group/comp.lang.lisp/browse_thread/thread/00e2aa56a0f84b20/feaa03484c1c653a?lnk=raot#feaa03484c1c653a But in the course... budden01(75)
(a-of (b-of c)) is good333 (11/1/2008 12:49:54 PM) comp.lang.lisp This is a reply to http://groups.google.com/group/comp.lang.lisp/msg/38106dde37c4801c Lars Rune N=F8stdal wrote: > I use (c-of (b-of a)), but it's more common to use or say (c (b a)). You're doing right. I w... budden01(75)
is it ok to (setf (get :const :prop) :val)?3525 (11/2/2008 4:20:00 PM) comp.lang.lisp Hi group! Just the subject. CLHS says it is ok. Is it really ok in implementations? It is needed to fix iterate's conflict to other packages defining 'for macro. It if is ok, I'll do (in-package :itera... budden01(75)
Alternatives4926 (11/4/2008 2:09:01 AM) comp.lang.lisp Writing some stuff in Paul Graham's _On Lisp_ in Ruby. =begin (defun our-remove-if (fn lst) (if (null lst) nil (if (funcall fn (car lst)) (our-remove-if fn (cdr lst)) (cons (car lst) ... w_a_x_man(2779)
Macros calling macros722 (11/4/2008 6:24:42 AM) comp.lang.lisp Hi, I have written a couple of small macros that does some text output and needs to indent. It kind of looks like the following :- (defmacro with-indent (&rest args) `(combine (indent+) ,@args (indent-... creelman.david(8)
Sbcl 1.0.22 - failed to test cllib1233 (11/11/2008 2:34:53 PM) comp.lang.lisp just did (require :cllib) Error was: The value ":,/|" is not of type (OR (SIMPLE-ARRAY CHARACTER #1=(5)) (SIMPLE-ARRAY NIL #1#) (SIMPLE-BASE-STRING 5)). [Condition of type TYPE-ERROR] Restarts: 0:... budden01(75)