branch: elpa/sweeprolog
commit 7487ba02840747cc81fe18e271093025f7c7d510
Author: Eshel Yaron <[email protected]>
Commit: Eshel Yaron <[email protected]>
; Fix unused argument
* sweeprolog.el (sweeprolog-module-minibuffer-annotation-1): Use 'pad'
argument.
---
sweeprolog.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sweeprolog.el b/sweeprolog.el
index 55df0481f4..c60e96756f 100644
--- a/sweeprolog.el
+++ b/sweeprolog.el
@@ -1193,7 +1193,7 @@ FILE is the file name of MODULE and DESC is its
description, or nil."
(propertize
(concat
(make-string
- (+ (- sweeprolog--module-max-width width) 2)
+ (+ (- pad width) 2)
?\s)
(when file (concat file
(when desc (concat ": "))))