summaryrefslogtreecommitdiff
path: root/documentation
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2023-11-14 18:14:48 +0100
committerAlbrecht Schlosser <albrechts.fltk@online.de>2023-11-14 18:14:48 +0100
commit4b315d190c41133786cc8b84282a7c102b31c14c (patch)
tree7b5f265f0f1d6bb872fdec91bc58079748c6b676 /documentation
parent6842a43a3170c6f7a852186d5688baebdac16e2c (diff)
Fix dependencies and whitespace issues
Diffstat (limited to 'documentation')
-rw-r--r--documentation/src/Fl_Terminal.dox16
1 files changed, 8 insertions, 8 deletions
diff --git a/documentation/src/Fl_Terminal.dox b/documentation/src/Fl_Terminal.dox
index 2963218da..01ba6fafb 100644
--- a/documentation/src/Fl_Terminal.dox
+++ b/documentation/src/Fl_Terminal.dox
@@ -73,7 +73,7 @@ Features will be added as the widget matures.
│ ESC[#e - (LPA) Line Position Relative [row] (NOT IMPLEMENTED)
│ ESC[#f - (CUP) cursor position (#'s 1 based), same as ESC[H
-│ ESC[#g - (TBC)Tabulation Clear
+│ ESC[#g - (TBC)Tabulation Clear
│ │
│ ├── ESC[0g - Clear tabstop at cursor
│ └── ESC[3g - Clear all tabstops
@@ -273,7 +273,7 @@ The memory layout of the Utf8Char character array is:
So it's basically a single continuous array of Utf8Char instances
where any character can generally be accessed by index# using the formula:
- ring_chars[ (row*ring_cols)+col ]
+ ring_chars[ (row*ring_cols)+col ]
..where 'row' is the desired row, 'col' is the desired column,
and 'ring_cols' is how many columns "wide" the buffer is.
@@ -292,7 +292,7 @@ formulas, namely:
A key concept is the use of the simple 'offset' index integer
to allow the starting point of the history and display to be
-moved around to implement 'text scrolling', such as when
+moved around to implement 'text scrolling', such as when
crlf at the screen bottom causes a 'scroll up'.
This is simply an "index offset" integer applied to the
@@ -423,15 +423,15 @@ So to recap, the concepts here are:
// Entire ring
ring_srow() -- start row index of the ring buffer (always 0)
- ring_erow() -- end row index of the ring buffer
+ ring_erow() -- end row index of the ring buffer
// "history" part of ring
- hist_srow() -- start row index of the screen history
- hist_erow() -- end row index of the screen history
+ hist_srow() -- start row index of the screen history
+ hist_erow() -- end row index of the screen history
// "display" part of ring
- disp_srow() -- start row index of the display
- disp_erow() -- end row index of the display
+ disp_srow() -- start row index of the display
+ disp_erow() -- end row index of the display
The values returned by these are as described above.
For the hist_xxx() and disp_xxx() methods the 'offset' included into