chiark
/
gitweb
/
~mdw
/
profile
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
10ac316
)
el/dot-emacs.el: Use #'FOO rather than (function FOO).
author
Mark Wooding
<mwooding@good.com>
Thu, 20 Dec 2012 12:29:35 +0000
(12:29 +0000)
committer
Mark Wooding
<mwooding@good.com>
Thu, 20 Dec 2012 14:41:43 +0000
(14:41 +0000)
It's just better style.
el/dot-emacs.el
patch
|
blob
|
blame
|
history
diff --git
a/el/dot-emacs.el
b/el/dot-emacs.el
index 20978ded96ecf15b75f4a69cd08db82dbf110bd9..ec961750088c803c23bcb0a2eb93fa4c3f366e95 100644
(file)
--- 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)))
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)))))
(cdr (car l))))))
(t (mdw-examine-fill-prefixes (cdr l)))))