1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: Stephane Glondu <steph@glondu.net>
Date: Thu, 30 Jan 2020 08:36:58 +0100
Subject: Bitstrings now use bytes
---
dvi/dvi.ml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dvi/dvi.ml b/dvi/dvi.ml
index 4fe1a19..f6da8cd 100644
--- a/dvi/dvi.ml
+++ b/dvi/dvi.ml
@@ -639,7 +639,7 @@ module Incremental = struct
{ mutable fonts : fontmap;
mutable preamble : preamble;
chan : in_channel;
- mutable bits : string * int * int;
+ mutable bits : bytes * int * int;
}
let mk_t c =
|