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.
This commit is contained in:
William Carroll 2020-09-02 14:00:43 +01:00
parent 1fe5d0373e
commit c17796a60d
10 changed files with 84 additions and 108 deletions

View file

@ -16,7 +16,7 @@
(require 'constants)
(require 'prelude)
(require 'alist)
(require 'al)
(require 'fonts)
(require 'colorscheme)
(require 'device)
@ -91,7 +91,7 @@
:config
(counsel-mode t)
(ivy-mode t)
(alist-set! #'counsel-M-x "" ivy-initial-inputs-alist)
(al-set! #'counsel-M-x "" ivy-initial-inputs-alist)
;; prefer using `helpful' variants
(progn
(setq counsel-describe-function-function #'helpful-callable)