about summary refs log tree commit diff
path: root/emacs/.emacs.d/wpc/wpc-elixir.el
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-09-02T13·49+0100
committerWilliam Carroll <wpcarro@gmail.com>2020-09-02T13·49+0100
commit924c7fa4199235a929ecd6a68a09b7e4acd36352 (patch)
treecf18d000d70f2f3c1eb97d30a5d1f65686d0ca05 /emacs/.emacs.d/wpc/wpc-elixir.el
parent71e57700d60a2573fca069dfa8fc90e928561dcf (diff)
Debug undefined add-hook-before-save
`use-package` complains that `add-hook-before-save` doesn't exist. This is
because it's now named `macros-add-hook-before-save`.

This fixes that.
Diffstat (limited to 'emacs/.emacs.d/wpc/wpc-elixir.el')
-rw-r--r--emacs/.emacs.d/wpc/wpc-elixir.el13
1 files changed, 12 insertions, 1 deletions
diff --git a/emacs/.emacs.d/wpc/wpc-elixir.el b/emacs/.emacs.d/wpc/wpc-elixir.el
index 9209f81b2c63..0b5e3917139e 100644
--- a/emacs/.emacs.d/wpc/wpc-elixir.el
+++ b/emacs/.emacs.d/wpc/wpc-elixir.el
@@ -9,9 +9,20 @@
 ;; My preferences for working with Elixir / Erlang projects
 
 ;;; Code:
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;; Dependencies
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+
+(require 'macros)
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+;; Configuration
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
+
 (use-package elixir-mode
   :config
-  (add-hook-before-save 'elixir-mode-hook #'elixir-format))
+  (macros-add-hook-before-save 'elixir-mode-hook #'elixir-format))
 
 (provide 'wpc-elixir)
 ;;; wpc-elixir.el ends here