summary refs log tree commit diff stats
path: root/emacs
diff options
context:
space:
mode:
authorAlan Pearce2013-05-30 15:23:42 +0100
committerAlan Pearce2013-05-30 15:23:42 +0100
commit693a2104ef68de2146d074fc47691c4ffdb8dd38 (patch)
treea7827b1d00ef52de135ce6ebb3620ef055ef2eec /emacs
parent333dd7930ef9e79fd76e8b6ec9157b9d0c5bd52d (diff)
downloaddotfiles-693a2104ef68de2146d074fc47691c4ffdb8dd38.tar.lz
dotfiles-693a2104ef68de2146d074fc47691c4ffdb8dd38.tar.zst
dotfiles-693a2104ef68de2146d074fc47691c4ffdb8dd38.zip
Emacs: fix bad diff again
Diffstat (limited to 'emacs')
-rw-r--r--emacs/init.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/emacs/init.el b/emacs/init.el
index fdd288a..5c1f496 100644
--- a/emacs/init.el
+++ b/emacs/init.el
@@ -1017,10 +1017,10 @@ Works with: arglist-cont-nonempty, arglist-close."
   :mode ("\\.js\\'" . js2-mode)
   :config (progn
             (defun ap/javascript-setup ()
-              (if (featurep 'moz)
-              (if (featurep 'skewer-mode)
+			  (if (featurep 'moz)
+				  (moz-minor-mode))
+			  (if (featurep 'skewer-mode)
                   (skewer-mode +1))
-                  (moz-minor-mode t))
               (autopair-mode -1)
               (auto-indent-mode -1))
             (add-hook 'js2-mode-hook #'ap/javascript-setup)