Skip to content

Commit

Permalink
Merge pull request #85 from yoichi/emacs-setting
Browse files Browse the repository at this point in the history
Avoid error when whitespace.el is not loaded
  • Loading branch information
lelit committed Nov 13, 2017
2 parents 3ff561a + e7b4841 commit 38fa120
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .dir-locals.el
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
((nil . ((fill-column . 90)
;; force reinstall of whitespace font-lock customization
(eval . (whitespace-color-on))))
(eval . (if (functionp 'whitespace-color-on)
(whitespace-color-on)))))
(c++-mode . ((eval . (c-set-style "stroustrup")))))

0 comments on commit 38fa120

Please sign in to comment.