From mboxrd@z Thu Jan 1 00:00:00 1970 From: Aaron Ecay Subject: Quoting functions with ' vs #' Date: Wed, 21 May 2014 01:15:30 -0400 Message-ID: <87r43nrac2.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:49458) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WmysN-0004oS-Ef for emacs-orgmode@gnu.org; Wed, 21 May 2014 01:15:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WmysH-0002Ci-Fq for emacs-orgmode@gnu.org; Wed, 21 May 2014 01:15:39 -0400 Received: from mail-qg0-x235.google.com ([2607:f8b0:400d:c04::235]:45873) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WmysH-0002Cc-BW for emacs-orgmode@gnu.org; Wed, 21 May 2014 01:15:33 -0400 Received: by mail-qg0-f53.google.com with SMTP id f51so2380765qge.40 for ; Tue, 20 May 2014 22:15:32 -0700 (PDT) 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: orgmode Cc: Bastien Hello, Commit a5686d87 (link[1]) changes several uses of #' to '. Is this org =E2=80=9Chouse style=E2=80=9D? It disables a compile-time warning about po= tentially undefined functions: #+begin_src elisp (defun i-give-a-warning () (mapc #'doesnt-exist '(1 2 3))) (defun i-do-not () (mapc 'doesnt-exist2 '(1 2 3))) #+end_src When I=E2=80=99m writing elisp, this warning catches my own mistakes on a p= retty regular basis, and so I=E2=80=99m rather fond of it. But if bare ' is how = org code should be written, it would be good to know that. Thanks, Aaron [1] -- Aaron Ecay