diff options
author | Kyle Meyer <kyle@kyleam.com> | 2014-03-02 22:27:01 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2014-03-02 22:27:01 -0500 |
commit | 56f60036795436961555b6cb4d855cfdecb7852f (patch) | |
tree | e66ed63ca7e8635d679c27aa25d4dd26784b9a46 | |
parent | 28786e12043e61dcbdf5438ed70955111b196f8e (diff) | |
download | emacs.d-56f60036795436961555b6cb4d855cfdecb7852f.tar.gz |
Fix function call in text mode hook
-rw-r--r-- | lisp/init-text.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/init-text.el b/lisp/init-text.el index 70cfd86..c733927 100644 --- a/lisp/init-text.el +++ b/lisp/init-text.el @@ -4,7 +4,7 @@ (add-hook 'text-mode-hook '(lambda () (abbrev-mode 1) - turn-on-auto-fill)) + (turn-on-auto-fill))) (defun km/export-wrapped-text (arg) "Export the text in current buffer as wrapped text. |