aboutsummaryrefslogtreecommitdiff
path: root/module/calp/terminal.scm
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2021-12-21 16:17:28 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2021-12-22 22:58:30 +0100
commitd00fea566004e67161ee45246b239fff5d416b0e (patch)
tree5641c0c0d0e78b046b6045ed2440512f12259560 /module/calp/terminal.scm
parentComplete rewrite of use2dot (diff)
downloadcalp-d00fea566004e67161ee45246b239fff5d416b0e.tar.gz
calp-d00fea566004e67161ee45246b239fff5d416b0e.tar.xz
Cleanup modules.
Primarly this moves all vcompenent input and output code to clearly labeled modules, instead of being spread out. At the same time it also removes a handfull of unused procedures.
Diffstat (limited to 'module/calp/terminal.scm')
-rw-r--r--module/calp/terminal.scm9
1 files changed, 4 insertions, 5 deletions
diff --git a/module/calp/terminal.scm b/module/calp/terminal.scm
index 4b62895d..1014b94c 100644
--- a/module/calp/terminal.scm
+++ b/module/calp/terminal.scm
@@ -3,18 +3,17 @@
#:use-module (datetime)
#:use-module (srfi srfi-17)
#:use-module (srfi srfi-26)
- #:use-module (srfi srfi-41)
- #:use-module (srfi srfi-41 util)
+ #:use-module ((srfi srfi-41) :select (stream-car))
#:use-module (calp util)
#:use-module (vulgar)
#:use-module (vulgar info)
#:use-module (vulgar color)
#:use-module (vulgar components)
- #:use-module (vcomponent group)
#:use-module (vcomponent)
#:use-module (vcomponent datetime)
- #:use-module (vcomponent search)
+ #:use-module (vcomponent util search)
+ #:use-module (vcomponent util group)
#:use-module (text util)
#:use-module (text flow)
@@ -28,7 +27,7 @@
#:use-module (oop goops)
#:use-module (oop goops describe)
- #:autoload (vcomponent instance) (global-event-object)
+ #:autoload (vcomponent util instance) (global-event-object)
#:export (main-loop))