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 20978de..ec96175 100644 (file)
@@ -667,8 +667,8 @@ context and return the static fill prefix to use.  Point must be
 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)))))