Re: [O] Quoting functions with ' vs #'

2014-05-21 Thread Bastien
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-proble

[O] Quoting functions with ' vs #'

2014-05-20 Thread Aaron Ecay
Hello, Commit a5686d87 (link[1]) changes several uses of #' to '. Is this org “house style”? It disables a compile-time warning about potentially 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)))