From: Mark Wooding Date: Thu, 20 Dec 2012 12:29:35 +0000 (+0000) Subject: el/dot-emacs.el: Use #'FOO rather than (function FOO). X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/profile/commitdiff_plain/17cf437c6bd56cd9c160e4edec962f62b96d9864?ds=sidebyside el/dot-emacs.el: Use #'FOO rather than (function FOO). It's just better style. --- diff --git a/el/dot-emacs.el b/el/dot-emacs.el index 20978de..ec96175 100644 --- a/el/dot-emacs.el +++ b/el/dot-emacs.el @@ -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)))))