branch: externals/marginalia commit 12fe43978e3e559fb5d4f13d119de36f1d53bb60 Author: Daniel Mendler <m...@daniel-mendler.de> Commit: Daniel Mendler <m...@daniel-mendler.de>
right-fringe-width - use eq instead of = --- marginalia.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/marginalia.el b/marginalia.el index f9518cc..660dcc3 100644 --- a/marginalia.el +++ b/marginalia.el @@ -267,7 +267,7 @@ determine it." (propertize " " 'display - `(space :align-to (- right ,(if (= right-fringe-width 0) 1 0) ,(length str)))) + `(space :align-to (- right ,(if (eq right-fringe-width 0) 1 0) ,(length str)))) str))) (cl-defmacro marginalia--field (field &key truncate format face width)