Newsgroups: comp.lang.lisp
From: BobF <rNfOrSePeA...@charter.net>
Date: Thu, 8 Jun 2006 09:36:54 -0500
Local: Thurs, Jun 8 2006 10:36 am
Subject: a [hopefully] easy question
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
| ||||||||||||||
Newsgroups: comp.lang.lisp
From: Pascal Bourguignon <p...@informatimago.com>
Date: Thu, 08 Jun 2006 16:43:10 +0200
Local: Thurs, Jun 8 2006 10:43 am
Subject: Re: a [hopefully] easy question
BobF <rNfOrSePeA...@charter.net> writes: (defun reset-cluser () > Is there a way to "clear" the lisp environment without exiting and > restarting? > lispbox w/clisp 2.37 "Delete the COMMON-LISP-USER package and makes a new one." (let ((setp (eq *package* (find-package "COMMON-LISP-USER")))) (let ((*package* (find-package "COMMON-LISP"))) (delete-package "COMMON-LISP-USER") (defpackage "COMMON-LISP-USER" (:nicknames "CL-USER") (:use "COMMON-LISP" "COM.INFORMATIMAGO.PJB"))) (when setp (setf *package* (find-package "COMMON-LISP-USER"))))) -- You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
| ||||||||||||||
Newsgroups: comp.lang.lisp
From: BobF <rNfOrSePeA...@charter.net>
Date: Thu, 8 Jun 2006 13:34:04 -0500
Local: Thurs, Jun 8 2006 2:34 pm
Subject: Re: a [hopefully] easy question
I put this nifty stuff into a file. When I load the file, I get:
SYSTEM::%FIND-PACKAGE: There is no package with name . You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
| ||||||||||||||
Newsgroups: comp.lang.lisp
From: Pascal Bourguignon <p...@informatimago.com>
Date: Thu, 08 Jun 2006 20:57:06 +0200
Local: Thurs, Jun 8 2006 2:57 pm
Subject: Re: a [hopefully] easy question
Sorry. Here is a better version:
(defun reset-cluser () -- "I have challenged the entire quality assurance team to a Bat-Leth You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
| ||||||||||||||
| |||||||||||||
Newsgroups: comp.lang.lisp
Date: 8 Jun 2006 12:12:28 -0700
Local: Thurs, Jun 8 2006 3:12 pm
Subject: VIRUS DETECTED! - Re: a [hopefully] easy question
> (defun reset-cluser () XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX > "Delete the COMMON-LISP-USER package and makes a new one." > (let ((setp (eq *package* (find-package "COMMON-LISP-USER")))) > (let ((*package* (find-package "COMMON-LISP"))) > (delete-package "COMMON-LISP-USER") > (defpackage "COMMON-LISP-USER" > (:nicknames "CL-USER") > (:use "COMMON-LISP")) XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX > (when setp (setf *package* (find-package "COMMON-LISP-USER")))))) VIRUS has been removed You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
| ||||||||||||||
| |||||||||||||
Newsgroups: comp.lang.lisp
From: Ron Garret <rNOSPA...@flownet.com>
Date: Thu, 08 Jun 2006 12:17:40 -0700
Local: Thurs, Jun 8 2006 3:17 pm
Subject: Re: a [hopefully] easy question
In article <87zmgn327x....@thalassa.informatimago.com>,
Pascal Bourguignon <p...@informatimago.com> wrote: That might be a little too good. I doubt that the kind of "clearing" the OP had in mind included deleting all the files on the hard drive. rg You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
| ||||||||||||||
Newsgroups: comp.lang.lisp
From: BobF <rNfOrSePeA...@charter.net>
Date: Thu, 8 Jun 2006 14:33:38 -0500
Local: Thurs, Jun 8 2006 3:33 pm
Subject: Re: a [hopefully] easy question
Thanks, Ron.
Nevermind, Pascal. I asked this question because I'm brand-spankin-new to I'm not ready to debug/fix your untested guesses at a solution and I Thanks anyway! You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
| ||||||||||||||
Newsgroups: comp.lang.lisp
From: Pascal Bourguignon <p...@informatimago.com>
Date: Thu, 08 Jun 2006 22:05:19 +0200
Local: Thurs, Jun 8 2006 4:05 pm
Subject: Re: a [hopefully] easy question
BobF <rNfOrSePeA...@charter.net> writes: That's exactly because you're a newbie you must try to understand any > Nevermind, Pascal. I asked this question because I'm brand-spankin-new to > lisp and thought there might be an easy way to accomplish what I was trying > to do that I was overlooking. > I'm not ready to debug/fix your untested guesses at a solution and I piece of code thrown at you, bullshit or not. If you had tried, you could have corrected the trivial error you got from my first version. -- You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
| ||||||||||||||
Newsgroups: comp.lang.lisp
From: BobF <rNfOrSePeA...@charter.net>
Date: Thu, 8 Jun 2006 15:15:04 -0500
Local: Thurs, Jun 8 2006 4:15 pm
Subject: Re: a [hopefully] easy question
On Thu, 08 Jun 2006 22:05:19 +0200, Pascal Bourguignon wrote: After completing all of "Hello World"!? Go fZck yourself you arrogant POS! > BobF <rNfOrSePeA...@charter.net> writes: >> Nevermind, Pascal. I asked this question because I'm brand-spankin-new to >> I'm not ready to debug/fix your untested guesses at a solution and I > That's exactly because you're a newbie you must try to understand any You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
| ||||||||||||||
Newsgroups: comp.lang.lisp
From: Ron Garret <rNOSPA...@flownet.com>
Date: Thu, 08 Jun 2006 14:22:41 -0700
Local: Thurs, Jun 8 2006 5:22 pm
Subject: Re: a [hopefully] easy question
In article <87k67r2z28....@thalassa.informatimago.com>,
Pascal Bourguignon <p...@informatimago.com> wrote: > BobF <rNfOrSePeA...@charter.net> writes: While I agree with that sentiment, I do think that wiping out his entire > > Nevermind, Pascal. I asked this question because I'm brand-spankin-new to > > I'm not ready to debug/fix your untested guesses at a solution and I > That's exactly because you're a newbie you must try to understand any system is perhaps making the point a tad too harshly. rg You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
| ||||||||||||||
| Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy |
| ©2009 Google |