From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Hugo Schmitt" Subject: [Org+] org-elisp-symbol.el Date: Mon, 14 Jan 2008 09:30:10 -0300 Message-ID: <2f1c7d020801140430n4f0be9bdr1defed2b606b6cd8@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JEOSF-00010s-F6 for emacs-orgmode@gnu.org; Mon, 14 Jan 2008 07:30:15 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JEOSD-0000wk-JX for emacs-orgmode@gnu.org; Mon, 14 Jan 2008 07:30:14 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JEOSD-0000wY-D7 for emacs-orgmode@gnu.org; Mon, 14 Jan 2008 07:30:13 -0500 Received: from wa-out-1112.google.com ([209.85.146.180]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JEOSC-00030s-Tg for emacs-orgmode@gnu.org; Mon, 14 Jan 2008 07:30:13 -0500 Received: by wa-out-1112.google.com with SMTP id k34so3689293wah.10 for ; Mon, 14 Jan 2008 04:30:11 -0800 (PST) Content-Disposition: inline List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org I'm reposting to the list because Bastien's mail bounced. --- Hi Bastien. I've been using this package daily, thank you very much. I had a problem today with evaluated functions without docstring. They 'fall' on the code below because functionp is t for them: ((functionp sym-name) (documentation sym-name)) but documentation returns nil for those, so i get an error. For now i'm using the ugly fix: ((functionp sym-name) (or (documentation sym-name) "no documentation (2)")) Regards, Hugo