Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
(documentation 'some-function 'function)
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  6 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
David Allen  
View profile  
 More options Apr 29 2000, 3:00 am
Newsgroups: comp.lang.lisp
From: "David Allen" <s2mda...@titan.vcu.edu>
Date: 2000/04/29
Subject: (documentation 'some-function 'function)

Why is it that this function exists, but practically none of the
builtin functions have anything registered with it?

I can do:

(defun identity (&rest foo)
   "This is a pretty useless function"
   foo)

and then

(documentation 'identity 'function) =>
"This is a pretty useless function"

But using documentation yields nothing for
all the builtin functions.  What other online help
facilities are there available other than
documentation?

TIA
--
David Allen
http://opop.nols.com/
----------------------------------------
A slipping gear could let your M203 grenade launcher fire when you
least expect it. That would make you quite unpopular in what's left of
your unit.
        - The Army's magazine of preventive maintenance.


 
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.
Barry Margolin  
View profile  
 More options Apr 30 2000, 3:00 am
Newsgroups: comp.lang.lisp
From: Barry Margolin <bar...@genuity.net>
Date: 2000/04/30
Subject: Re: (documentation 'some-function 'function)
In article <8eg0jn$sp...@bob.news.rcn.net>,

David Allen <s2mda...@titan.vcu.edu> wrote:
>Why is it that this function exists, but practically none of the
>builtin functions have anything registered with it?

Because most vendors haven't bothered.  CLTL and the vendors' written
documentation usually provide much better information than can be crammed
into a little documentation string.

--
Barry Margolin, bar...@genuity.net
Genuity, Burlington, MA
*** DON'T SEND TECHNICAL QUESTIONS DIRECTLY TO ME, post them to newsgroups.
Please DON'T copy followups to me -- I'll assume it wasn't posted to the group.


 
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.
Rainer Joswig  
View profile  
 More options Apr 30 2000, 3:00 am
Newsgroups: comp.lang.lisp
From: Rainer Joswig <rainer.jos...@ision.net>
Date: 2000/04/30
Subject: Re: (documentation 'some-function 'function)
In article <8eg0jn$sp...@bob.news.rcn.net>, "David Allen"

<s2mda...@titan.vcu.edu> wrote:
> Why is it that this function exists, but practically none of the
> builtin functions have anything registered with it?

We can't guess what Lisp implementation you are using...

Anyway, Macintosh Common Lisp for example gives:

? (documentation 'documentation 'function)
"returns the documentation string of doc-type for symbol. Documentation
strings may be specified when functions, variables, macros, etc. are
defined. The documentation strings are only retained if
*save-doc-strings* is true when the definition occurs. doc-type may be
function, variable, structure, type, or setf."

> But using documentation yields nothing for
> all the builtin functions.  What other online help
> facilities are there available other than
> documentation?

Various environments can access CLtL2 or the ANSI CL HyperSpec.

Rainer Joswig


 
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.
Erik Naggum  
View profile  
 More options Apr 30 2000, 3:00 am
Newsgroups: comp.lang.lisp
From: Erik Naggum <e...@naggum.no>
Date: 2000/04/30
Subject: Re: (documentation 'some-function 'function)
* "David Allen" <s2mda...@titan.vcu.edu>
| Why is it that this function exists, but practically none of the
| builtin functions have anything registered with it?

  probably because there are better ways to find better documentation
  for the language.

#:Erik


 
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.
Tim Bradshaw  
View profile  
 More options May 2 2000, 3:00 am
Newsgroups: comp.lang.lisp
From: Tim Bradshaw <t...@cley.com>
Date: 2000/05/02
Subject: Re: (documentation 'some-function 'function)

* David Allen wrote:
> But using documentation yields nothing for
> all the builtin functions.  What other online help
> facilities are there available other than
> documentation?

One of the several hyperspec interfaces is generally a much better way
of doing this.  I use Erik Naggum's but there are others.  You
probably need emacs for these.

--tim


 
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.
Paolo Amoroso  
View profile  
 More options May 3 2000, 3:00 am
Newsgroups: comp.lang.lisp
From: Paolo Amoroso <amor...@mclink.it>
Date: 2000/05/03
Subject: Re: (documentation 'some-function 'function)
On 02 May 2000 14:21:44 +0100, Tim Bradshaw <t...@cley.com> wrote:

> One of the several hyperspec interfaces is generally a much better way
> of doing this.  I use Erik Naggum's but there are others.  You
> probably need emacs for these.

ILISP http://ilisp.cons.org/ (CVS tree at http://ilisp.sourceforge.net/)
ships with 3 HyperSpec interfaces by Daniel Barlow, Stephen Carney and Erik
Naggum.

Paolo
--
EncyCMUCLopedia * Extensive collection of CMU Common Lisp documentation
http://cvs2.cons.org:8000/cmucl/doc/EncyCMUCLopedia/


 
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.
End of messages
« Back to Discussions « Newer topic     Older topic »