~ruther/guix-local

b21d05d232ec0aba5abec20e83cc52c1d5163cc3 — Ludovic Courtès 3 years ago ebda12e
read-print: Remove unused procedure.

* guix/read-print.scm (combine-vertical-space): Remove.
1 files changed, 0 insertions(+), 5 deletions(-)

M guix/read-print.scm
M guix/read-print.scm => guix/read-print.scm +0 -5
@@ 82,11 82,6 @@
(define vertical-space        (record-type-constructor <vertical-space>))
(define vertical-space-height (record-accessor <vertical-space> 'height))

(define (combine-vertical-space x y)
  "Return vertical space as high as the combination of X and Y."
  (vertical-space (+ (vertical-space-height x)
                     (vertical-space-height y))))

(define canonicalize-vertical-space
  (let ((unit (vertical-space 1)))
    (lambda (space)