From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kalle Olavi Niemitalo To: guile-emacs@sourceware.cygnus.com Subject: Re: scheme-describe-symbol Date: Sat, 29 Apr 2000 11:37:00 -0000 Message-id: <87em7pj5ma.fsf@PC486.Niemitalo.LAN> References: <87zoqdgvp7.fsf@PC486.Niemitalo.LAN> X-SW-Source: 2000-q2/msg00012.html Keisuke Nishida writes: > (define + -) > (+ 1 2) > > In this case, we may want to find the documentation of `-' instead of > that of `+'. Must there still be a way to get the documentation of `+'? If not, we could use `procedure-name': guile> (define + -) guile> (procedure-name +) - > We could combine these two functions into one command, though. I believe that would be easier for users. I have an incomplete `scheme-describe-variable'. I'll start hacking it again. > ---------------------------------------- > `+' is a method. No, it's a generic function. ;-)