Search found 7 matches

by inexperienced
Tue Dec 07, 2010 6:56 am
Forum: Common Lisp
Topic: Package dependencies
Replies: 4
Views: 4561

Re: Package dependencies

Thanks for the pointer to the Idiot's Guide! It was extremely helpful. I will relook at the problem with my new found perspective on packages.
:)
by inexperienced
Mon Dec 06, 2010 6:24 pm
Forum: Common Lisp
Topic: Package dependencies
Replies: 4
Views: 4561

Package dependencies

Is there a commonly used set of package dependencies in the comon lisp community? Maybe *no package dependency* is the standard? Or is there no common approach used by most lisp developers? I ask because I am running into a compile-time package-locked-error. And this got me thinking about common or ...
by inexperienced
Thu Apr 01, 2010 2:05 pm
Forum: Common Lisp
Topic: Need lisp function to handle text and parse a number
Replies: 3
Views: 3831

Re: Need lisp function to handle text and parse a number

Hmmm..... I can't get the tarball for parse-number to open (I am working on a Windows machine).
Maybe it will be easiest just to write the text handling part myself, then use the usual cl number handlers.
thanks!
by inexperienced
Thu Apr 01, 2010 11:39 am
Forum: Common Lisp
Topic: Need lisp function to handle text and parse a number
Replies: 3
Views: 3831

Need lisp function to handle text and parse a number

Hi! I am starting to write a lisp function that will take a text input (this text is obtained by parsing tokens from a text chat app), and removes a specific set of non-numeric English characters and will return a number. For example: - given the input "2nd", the function will return 2 - g...
by inexperienced
Fri Jan 08, 2010 6:54 pm
Forum: Common Lisp
Topic: Unknown Use of Keyword Parameter
Replies: 2
Views: 3691

Re: Unknown Use of Keyword Parameter

Your answer was exactly what I was looking for.
Thank you a great deal!
by inexperienced
Thu Jan 07, 2010 2:47 pm
Forum: Common Lisp
Topic: Unknown Use of Keyword Parameter
Replies: 2
Views: 3691

Unknown Use of Keyword Parameter

On the 5th line of code below, someone has used the keyword parameter named ":all" in the body of the function definition. I am not accustomed to seeing it this way. I have used the code and it works. I just don't know why the 5th line is a valid equality test. ?? (defun find-matching-chun...
by inexperienced
Thu Dec 24, 2009 5:57 pm
Forum: Common Lisp
Topic: CL Printing Strings for use in XML
Replies: 1
Views: 3254

CL Printing Strings for use in XML

Hello! I am working on a project where (among other things) we are writing a list of pairs of values to be embedded in an xml document. Sometimes both members of the pair are symbols; and sometimes they are a symbol and a string. The overall lisp program is quite large. The example shown below is si...