Use functions instead of lambdas for mode customizations

This commit is contained in:
2012-04-21 20:04:48 +01:00
parent 26ef3e957a
commit 61bfb8f36d
15 changed files with 178 additions and 156 deletions

View File

@@ -1,7 +1,9 @@
(add-hook 'php-mode-hook
(lambda ()
(setq whitespace-action (quote (auto-cleanup)))
(flyspell-prog-mode)
(linum-mode t)
(fci-mode)
(highlight-indentation-mode)))
(defun customizations-for-php-mode ()
(interactive)
(setq whitespace-action (quote (auto-cleanup)))
(flyspell-prog-mode)
(linum-mode t)
(fci-mode)
(highlight-indentation-mode))
(add-hook 'php-mode-hook 'customizations-for-php-mode)