From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bernt Hansen Subject: Re: Docs submitted Date: Wed, 11 Feb 2009 09:58:43 -0500 Message-ID: <87fxilggv0.fsf@gollum.intra.norang.ca> References: <20090101170227.C707734803@mail2.panix.com> <1036.24.63.0.170.1233950825.squirrel@mail.panix.com> <60BDFE6D-6B8C-4A23-A737-67DC1F523C79@uva.nl> <1044.66.30.185.29.1234039592.squirrel@mail.panix.com> <6444D654-9B7B-415D-A6DB-F3BADCB1EE2A@uva.nl> <1451.24.63.21.131.1234124707.squirrel@mail.panix.com> <8BD25355-1218-4DB5-9C85-77EA011540D0@uva.nl> <1555.24.62.30.15.1234235653.squirrel@mail.panix.com> <1062.24.62.30.15.1234314505.squirrel@mail.panix.com> <3AFEF956-A0A1-4777-B02C-4ECC58844EDB@uva.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LXGYP-0006yT-HQ for emacs-orgmode@gnu.org; Wed, 11 Feb 2009 09:59:09 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LXGYM-0006xB-Bt for emacs-orgmode@gnu.org; Wed, 11 Feb 2009 09:59:09 -0500 Received: from [199.232.76.173] (port=35473 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LXGYM-0006x5-2C for emacs-orgmode@gnu.org; Wed, 11 Feb 2009 09:59:06 -0500 Received: from mho-02-bos.mailhop.org ([63.208.196.179]:55011) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1LXGYK-0007o3-Lp for emacs-orgmode@gnu.org; Wed, 11 Feb 2009 09:59:05 -0500 In-Reply-To: <3AFEF956-A0A1-4777-B02C-4ECC58844EDB@uva.nl> (Carsten Dominik's message of "Wed\, 11 Feb 2009 13\:29\:55 +0100") 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: Carsten Dominik Cc: emacs-orgmode@gnu.org, "Tom Breton (Tehom)" Carsten Dominik writes: > On Feb 11, 2009, at 2:08 AM, Tom Breton (Tehom) wrote: > >> (eval-after-load 'org >> '(progn >> ;;^--HERE. >> (add-to-list 'org-todo-setup-filter-hook >> #'org-choose-setup-filter) >> (add-to-list 'org-todo-get-default-hook >> #'org-choose-get-default-mark) >> (add-to-list 'org-trigger-hook >> #'org-choose-keep-sensible) >> (add-to-list 'org-todo-interpretation-widgets >> '(:tag "Choose (to record decisions)" choose) >> 'append) >> )) >> > > Hi Tom, > > maybe you can educate me: I have never understood what the "#" does > in code like the one you have here. You are using it, so maybe you > know? As I understand it (from my book on Common Lisp) #'some-function is used to quote function names. 'some-function quotes a variable. It means "Get me the function with the following name" - without the #', Lisp would treat some-function as the name of a variable and look up the value of the variable, not the function. -Bernt