diff options
author | Alan Pearce | 2016-05-11 15:42:09 +0200 |
---|---|---|
committer | Alan Pearce | 2016-05-11 15:42:22 +0200 |
commit | aceb35a7305b36a7be4b5f10bdd15e21d079b948 (patch) | |
tree | bedfcfcc2780eb2d480b23bb4c8683aa01dffc4f | |
parent | 8e381df2b74ec9f854ef4a52ac6f87513212f545 (diff) | |
download | nixfiles-aceb35a7305b36a7be4b5f10bdd15e21d079b948.tar.lz nixfiles-aceb35a7305b36a7be4b5f10bdd15e21d079b948.tar.zst nixfiles-aceb35a7305b36a7be4b5f10bdd15e21d079b948.zip |
Emacs: Fix typo in function name
-rw-r--r-- | tag-emacs/emacs.d/init.org | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tag-emacs/emacs.d/init.org b/tag-emacs/emacs.d/init.org index 0fe83fd4..23d07543 100644 --- a/tag-emacs/emacs.d/init.org +++ b/tag-emacs/emacs.d/init.org @@ -2120,8 +2120,8 @@ type them. (add-hook 'text-mode-hook #'typo-mode) (defun typo-mode-turn-off () (typo-mode -1)) - (add-hook 'yaml-mode-hook #'turn-off-typo-mode) - (add-hook 'jinja2-mode-hook #'turn-off-typo-mode))) + (add-hook 'yaml-mode-hook #'typo-mode-turn-off) + (add-hook 'jinja2-mode-hook #'typo-mode-turn-off))) #+END_SRC ** avy |