commit 953458556bb7e95a8cb029c8122d61de38f8c3d6
parent 9881355ee5389c76e51dd1b592beca8a44cbd59d
Author: Yuval Langer <yuval.langer@gmail.com>
Date: Sun, 16 Jun 2024 05:59:17 +0300
Properly `#:use-module` for each used module instead of wrongly `#:use-modules` for all modules together.
Diffstat:
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/pstk.scm b/pstk.scm
@@ -160,9 +160,8 @@
ttk/available-themes
ttk/set-theme
ttk/style)
- #:use-modules ((srfi srfi-88)
-
- (ice-9 match)))
+ #:use-module (srfi srfi-88)
+ #:use-module (ice-9 match))
(define *wish-program* "tclsh")
(define *wish-debug-input* #f)