about summary refs log tree commit diff
path: root/emacs/.emacs.d/wpc/prelude.el
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-08-31T13·59+0100
committerWilliam Carroll <wpcarro@gmail.com>2020-08-31T13·59+0100
commita35f723d9271c081318fe463cd6fc51757d8cb0f (patch)
treeca57e41d3ec34a5b7be164793babd9f00c7d9c78 /emacs/.emacs.d/wpc/prelude.el
parent1c87082648c6d265bddaf160f858f14240db739d (diff)
Lint maybe.el
This change had rippling implications.
Diffstat (limited to 'emacs/.emacs.d/wpc/prelude.el')
-rw-r--r--emacs/.emacs.d/wpc/prelude.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/emacs/.emacs.d/wpc/prelude.el b/emacs/.emacs.d/wpc/prelude.el
index 6ef9e3ba7afb..ee7bcbbf2707 100644
--- a/emacs/.emacs.d/wpc/prelude.el
+++ b/emacs/.emacs.d/wpc/prelude.el
@@ -95,7 +95,7 @@ These are strict assertions and purposely do not rely on truthiness."
 (add-hook 'linum-mode-hook
           (lambda ()
             (setq linum/safe? t)
-            (when (maybe/some? linum/mru-color)
+            (when (maybe-some? linum/mru-color)
               (set-face-foreground 'linum linum/mru-color))))
 
 (defun prelude/set-line-number-color (color)
@@ -137,7 +137,7 @@ This is a wrapper around `start-process' that has an API that resembles
   "Return t if CLI tool NAME exists according to `exec-path'."
   (let ((file (locate-file name exec-path)))
     (require 'maybe)
-    (if (maybe/some? file)
+    (if (maybe-some? file)
         (f-exists? file)
       nil)))