summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--guix/read-print.scm5
1 files changed, 0 insertions, 5 deletions
diff --git a/guix/read-print.scm b/guix/read-print.scm
index 08e219e204..63ff9ca5bd 100644
--- a/guix/read-print.scm
+++ b/guix/read-print.scm
@@ -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)