Remove old table implementation.

This commit is contained in:
Dominik Pantůček 2023-06-15 22:13:46 +02:00
parent bdc5396b1a
commit cc9e5bad7d
5 changed files with 19 additions and 427 deletions

View file

@ -27,6 +27,7 @@
(module
table
(
*table-border-style*
print-table
table->string
table->string-list
@ -42,9 +43,11 @@
table-processor
table-border
table-style
(only table-old *table-border-style*)
)
;; Default table border style to use if not explicitly specified.
(define *table-border-style* (make-parameter 'unicode))
(define (print-table . args)
(print (apply table->string args)))