convert a few 'cell' instances to 'nccell' in docs

This commit is contained in:
nick black 2021-05-14 03:51:03 -04:00
parent 1a7c5172f4
commit 6fd7a4cd52
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC
2 changed files with 3 additions and 3 deletions

View File

@ -720,7 +720,7 @@ In addition to its framebuffer--a rectilinear matrix of `nccell`s
* a name (used only for debugging). * a name (used only for debugging).
If opaque, a `nccell` on a higher `ncplane` completely obstructs a corresponding If opaque, a `nccell` on a higher `ncplane` completely obstructs a corresponding
`cell` from a lower `ncplane` from being seen. An `ncplane` corresponds loosely `nccell` from a lower `ncplane` from being seen. An `ncplane` corresponds loosely
to an [NCURSES Panel](https://invisible-island.net/ncurses/ncurses-intro.html#panels), to an [NCURSES Panel](https://invisible-island.net/ncurses/ncurses-intro.html#panels),
but is the primary drawing surface of notcurses—there is no object but is the primary drawing surface of notcurses—there is no object
corresponding to a bare NCURSES `WINDOW`. corresponding to a bare NCURSES `WINDOW`.

View File

@ -16,7 +16,7 @@ might surprise NCURSES programmers:
* Scrolling is disabled by default, and cannot be globally enabled (but * Scrolling is disabled by default, and cannot be globally enabled (but
see Direct Mode). see Direct Mode).
* The Curses `cchar_t` has a fixed-size array of `wchar_t`. The Notcurses * The Curses `cchar_t` has a fixed-size array of `wchar_t`. The Notcurses
`cell` instead supports a UTF-8 encoded extended grapheme cluster of `nccell` instead supports a UTF-8 encoded extended grapheme cluster of
arbitrary length. The only supported encodings are ASCII via `ANSI_X3.4-1968` arbitrary length. The only supported encodings are ASCII via `ANSI_X3.4-1968`
and Unicode via `UTF-8`. and Unicode via `UTF-8`.
* The cursor is disabled by default, when supported (`civis` capability). * The cursor is disabled by default, when supported (`civis` capability).
@ -58,7 +58,7 @@ making implicit use of `stdscr` ought be replaced with their explicit
equivalents. `stdscr` ought then be replaced with the result of equivalents. `stdscr` ought then be replaced with the result of
`notcurses_stdplane()` (the standard plane). `PANEL`s become `ncplane`s; the `notcurses_stdplane()` (the standard plane). `PANEL`s become `ncplane`s; the
Panels API is otherwise pretty close. Anything writing a bare character will Panels API is otherwise pretty close. Anything writing a bare character will
become a simple `cell`; multibyte or wide characters become complex `cell`s. become a simple `nccell`; multibyte or wide characters become complex `nccell`s.
Color no longer uses "color pairs". You can easily enough hack together a Color no longer uses "color pairs". You can easily enough hack together a
simple table mapping your colors to RGB values, and color pairs to foreground simple table mapping your colors to RGB values, and color pairs to foreground
and background indices into said table. That'll work for the duration of a and background indices into said table. That'll work for the duration of a