From d5a48b1fc6dc8c32b7ccaa0e5bb55e13dca0456b Mon Sep 17 00:00:00 2001 From: bd Date: Tue, 3 Jun 2025 14:27:17 -0400 Subject: Correct exwm-outer-gaps-max-width to be in package namespace --- .config/emacs/libraries/exwm-outer-gaps.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.config') diff --git a/.config/emacs/libraries/exwm-outer-gaps.el b/.config/emacs/libraries/exwm-outer-gaps.el index 9536cfa..c315e8b 100644 --- a/.config/emacs/libraries/exwm-outer-gaps.el +++ b/.config/emacs/libraries/exwm-outer-gaps.el @@ -23,7 +23,7 @@ (defcustom exwm-outer-gaps-increment-step 5 "Default increment/decrement value for gaps.") -(defcustom exwm-outer-max-gaps-width +(defcustom exwm-outer-gaps-max-width (* exwm-outer-gaps-increment-step 20) "The maximum size of the gaps.") @@ -46,7 +46,7 @@ "Sets the gap width to WIDTH. Automatically clamps the size of the gaps from 0 to `exwm-outer-max-gaps-width'" (setq exwm-outer-gaps-width - (max 0 (min width exwm-outer-max-gaps-width)))) + (max 0 (min width exwm-outer-gaps-max-width)))) (defun exwm-outer-gaps-increment () "Increment the outer gaps by exwm-outer-gaps-increment-step" -- cgit v1.2.3