branch: elpa/hl-block-mode commit 3a8d0b5a17d012dce7a3aca128bbc7e0dcbe2544 Author: Campbell Barton <ideasma...@gmail.com> Commit: Campbell Barton <ideasma...@gmail.com>
Cleanup: sharp-quote functions --- hl-block-mode.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hl-block-mode.el b/hl-block-mode.el index e14db0b2f7..e0992c1e89 100644 --- a/hl-block-mode.el +++ b/hl-block-mode.el @@ -164,8 +164,8 @@ typically `(point)'." (let* ( (block-list-len (length block-list)) - (bg-color (apply 'vector (color-values (face-attribute 'default :background)))) - (bg-color-tint (apply 'vector (color-values hl-block-color-tint))) + (bg-color (apply #'vector (color-values (face-attribute 'default :background)))) + (bg-color-tint (apply #'vector (color-values hl-block-color-tint))) ;; Check dark background is light/dark. (do-highlight (> 98304 (+ (aref bg-color 0) (aref bg-color 1) (aref bg-color 2)))) ;; Iterator.