commit | 37b0bcd7c15b6dac69ac8cb1c0d9d6a4fd5c54c0 | [log] [download] |
---|---|---|
author | Tiago Cunha <tcunha@gmx.com> | Sun Aug 09 17:28:24 2009 +0000 |
committer | Tiago Cunha <tcunha@gmx.com> | Sun Aug 09 17:28:24 2009 +0000 |
tree | 7422f55fe913126e060f60cf8c8d892236bc3dd6 | |
parent | 5b56ea181649793918779dd2684c671072ce4bc9 [diff] |
Sync OpenBSD patchset 226: Change the way the grid is stored, previously it was: - a two-dimensional array of cells; - a two-dimensional array of utf8 data; - an array of line lengths. Now it is a single array of a new struct grid_line each of which represents a line and contains the length and an array of cells and an array of utf8 data. This will make it easier to add additional per-line members, such as flags.