fix bug into goto_line
Some checks failed
Release / Bump Homebrew formula (push) Has been cancelled

This commit is contained in:
2025-11-28 03:12:08 -08:00
parent 734eb6e67d
commit 78e4f84f7b
6 changed files with 77 additions and 41 deletions

View File

@@ -32,9 +32,10 @@ struct editor {
time_t msgtm;
/* Multi-buffer support */
struct buffer **buffers; /* array of buffers */
struct buffer **buffers; /* array of buffers */
int bufcount; /* number of buffers */
int curbuf; /* current buffer index */
int curbuf; /* current buffer index */
size_t bufcap; /* current buffer capacity */
};