diff options
author | Thomas White <taw@bitwiz.org.uk> | 2017-05-21 22:58:23 +0200 |
---|---|---|
committer | Thomas White <taw@bitwiz.org.uk> | 2017-05-21 22:58:23 +0200 |
commit | 272e297df33bbfeaca3daebbbb1b074d7d8f036b (patch) | |
tree | 1bef01b868df5cf29804abcab8b2f31260ab319d /src/frame.h | |
parent | c6c1a2e6b3f4bca8e833d3c519a78bcf2f41d5c3 (diff) |
Fix character offsets
Diffstat (limited to 'src/frame.h')
-rw-r--r-- | src/frame.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/frame.h b/src/frame.h index 6302edc..0386a51 100644 --- a/src/frame.h +++ b/src/frame.h @@ -61,8 +61,8 @@ typedef struct _paragraph Paragraph; struct edit_pos { - int para; - size_t pos; + int para; /* Paragraph number */ + size_t pos; /* Byte position within paragraph */ int trail; }; |