From a35f723d9271c081318fe463cd6fc51757d8cb0f Mon Sep 17 00:00:00 2001 From: William Carroll Date: Mon, 31 Aug 2020 14:59:48 +0100 Subject: Lint maybe.el This change had rippling implications. --- emacs/.emacs.d/wpc/prelude.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'emacs/.emacs.d/wpc/prelude.el') 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))) -- cgit 1.4.1