diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2016-11-22 08:54:43 -0800 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2016-11-22 08:54:43 -0800 |
commit | 68a193308824583539eab67f6e87c31dd0b9343e (patch) | |
tree | 4eaef15612e0cdc4d3da0b9f0e85b242ada5d376 | |
parent | [Emacs] Add eldoc for python mode. (diff) | |
download | emacs.d-68a193308824583539eab67f6e87c31dd0b9343e.tar.gz |
[Emacs] Fix hook for Makefile.
Diffstat (limited to '')
-rw-r--r-- | emacs.d/init.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/emacs.d/init.el b/emacs.d/init.el index 75c54dc..f3fd673 100644 --- a/emacs.d/init.el +++ b/emacs.d/init.el @@ -363,9 +363,8 @@ (use-package make-mode ;; mode to support Makefile :config - (add-hook 'makefile-mode-hook - #'(lambda () - (setq-local tab-width 2)))) + (add-hook 'makefile-mode-hook (lambda () + (setq-local tab-width 2)))) (use-package markdown-mode ;; mode to support files in the Markdown format |