diff options
author | William Carroll <wpcarro@gmail.com> | 2020-09-02T13·00+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-09-02T13·00+0100 |
commit | c17796a60dba0c81ffb03ad277063a7eee2e1736 (patch) | |
tree | bbbecb27c710bdb2c60ababeddfcf064d2ded11b /emacs/.emacs.d/wpc/device.el | |
parent | 1fe5d0373ec90faa2e5c66d399b21d978792e135 (diff) |
Rename alist.el to al.el
After switching my namespace separator from "/" to "-" the function, `alist-get`, clashed (surprise!) with the pre-existing function, `alist-get`. As I was struggling to debug my broken Emacs (it broke bc Emacs 27 rolled out), and I changed the module name, "alist", to "al" attempting to defuse the issue.
Diffstat (limited to 'emacs/.emacs.d/wpc/device.el')
-rw-r--r-- | emacs/.emacs.d/wpc/device.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/emacs/.emacs.d/wpc/device.el b/emacs/.emacs.d/wpc/device.el index 5d2f2606d7b3..0e7992fd79e7 100644 --- a/emacs/.emacs.d/wpc/device.el +++ b/emacs/.emacs.d/wpc/device.el @@ -15,7 +15,7 @@ ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (require 'dash) -(require 'alist) +(require 'al) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Library @@ -30,7 +30,7 @@ (defun device-classify () "Return the device symbol for the current host or nil if not supported." - (alist-get system-name device-hostname->device)) + (al-get system-name device-hostname->device)) (defun device-work-laptop? () "Return t if current device is work laptop." |