chiark / gitweb /
el/dot-emacs.el: Use #'FOO rather than (function FOO).
authorMark Wooding <mwooding@good.com>
Thu, 20 Dec 2012 12:29:35 +0000 (12:29 +0000)
committerMark Wooding <mwooding@good.com>
Thu, 20 Dec 2012 14:41:43 +0000 (14:41 +0000)
It's just better style.

el/dot-emacs.el

index 20978ded96ecf15b75f4a69cd08db82dbf110bd9..ec961750088c803c23bcb0a2eb93fa4c3f366e95 100644 (file)
@@ -667,8 +667,8 @@ (defun mdw-examine-fill-prefixes (l)
 at the start of a line, and match data must be saved."
   (cond ((not l) nil)
               ((looking-at (car (car l)))
-               (mdw-tabify (apply (function concat)
-                                  (mapcar (function mdw-do-prefix-match)
+               (mdw-tabify (apply #'concat
+                                  (mapcar #'mdw-do-prefix-match
                                           (cdr (car l))))))
               (t (mdw-examine-fill-prefixes (cdr l)))))