aboutsummaryrefslogtreecommitdiff
path: root/module/vulgar
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-01-31 20:24:18 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2022-01-31 20:24:18 +0100
commit807409d41f8b1a4435ee1cf7ddc3d1a1b9116799 (patch)
tree41ce7d861f9048863f930b8a9227ca580da17911 /module/vulgar
parentMove use2dot into scripts subdir. (diff)
downloadcalp-807409d41f8b1a4435ee1cf7ddc3d1a1b9116799.tar.gz
calp-807409d41f8b1a4435ee1cf7ddc3d1a1b9116799.tar.xz
Move stuff from calp/util to hnh/util.
This is the first (major) step in splitting the generally useful items into its own library.
Diffstat (limited to 'module/vulgar')
-rw-r--r--module/vulgar/components.scm2
-rw-r--r--module/vulgar/info.scm2
-rw-r--r--module/vulgar/termios.scm2
3 files changed, 3 insertions, 3 deletions
diff --git a/module/vulgar/components.scm b/module/vulgar/components.scm
index 2b018e4e..882da849 100644
--- a/module/vulgar/components.scm
+++ b/module/vulgar/components.scm
@@ -1,6 +1,6 @@
(define-module (vulgar components)
#:use-module (datetime)
- #:use-module (calp util)
+ #:use-module (hnh util)
#:export ())
(define-public (display-calendar-header! date)
diff --git a/module/vulgar/info.scm b/module/vulgar/info.scm
index 66901ff8..79e555da 100644
--- a/module/vulgar/info.scm
+++ b/module/vulgar/info.scm
@@ -1,5 +1,5 @@
(define-module (vulgar info)
- :use-module (calp util))
+ :use-module (hnh util))
(define-public (get-terminal-size)
(let* (((rpipe . wpipe) (pipe)))
diff --git a/module/vulgar/termios.scm b/module/vulgar/termios.scm
index f88882c9..532fc07e 100644
--- a/module/vulgar/termios.scm
+++ b/module/vulgar/termios.scm
@@ -7,7 +7,7 @@
:use-module (ice-9 rdelim)
:use-module (srfi srfi-9) ; records
:use-module (c cpp)
- :use-module (calp util)
+ :use-module (hnh util)
:export (make-termios
copy-termios
tcsetattr! tcgetattr! cfmakeraw!))