From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bastien Subject: Re: Quoting functions with ' vs #' Date: Wed, 21 May 2014 09:29:20 +0200 Message-ID: <87sio3pp2n.fsf@bzg.ath.cx> References: <87r43nrac2.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50563) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wn0xx-0008GK-9x for emacs-orgmode@gnu.org; Wed, 21 May 2014 03:29:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Wn0xo-0003Sv-91 for emacs-orgmode@gnu.org; Wed, 21 May 2014 03:29:33 -0400 Received: from mail-wi0-x229.google.com ([2a00:1450:400c:c05::229]:37144) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wn0xo-0003Sr-2K for emacs-orgmode@gnu.org; Wed, 21 May 2014 03:29:24 -0400 Received: by mail-wi0-f169.google.com with SMTP id hi2so7989435wib.4 for ; Wed, 21 May 2014 00:29:23 -0700 (PDT) In-Reply-To: <87r43nrac2.fsf@gmail.com> (Aaron Ecay's message of "Wed, 21 May 2014 01:15:30 -0400") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Aaron Ecay Cc: orgmode Hi Aaron, Aaron Ecay writes: > Commit a5686d87 (link[1]) changes several uses of #' to '. Is this org > “house style”? Not really. My decision for this can be sumed up like this: #+begin_src elisp (defun i-give-a-warning () (mapc 'does-exist '(1 2 3))) (defun i-do-not () (mapc #'maybe-problematic-for-compilation '(1 2 3))) #+end_src But I don't feel strongly about that, except for #'(lambda ...) which is just redondant, if not misleading. 2 cts, -- Bastien