diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2025-05-03 20:36:25 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2025-05-03 20:36:25 +0300 |
commit | 9c2afb86acd2e28bef1767b7333acfb9666ec86b (patch) | |
tree | cfdedb1bd7436675654fb8374bca4e22a5f38e1d /tecparse.h | |
parent | 9deaff57e11036f96b93e0ed79b39cac7fcffa04 (diff) | |
download | videoteco-fork-9c2afb86acd2e28bef1767b7333acfb9666ec86b.tar.gz |
various data type improvements
* fixes at least <FS>, which has been broken since b5325e00c402ec18034da4b4a4aaaefa87bb1fef.
* but probably many other commands as well in the DOS version when working with
"very large" documents
* now compiles cleanly with -Wsign-compare
Diffstat (limited to 'tecparse.h')
-rw-r--r-- | tecparse.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -300,7 +300,7 @@ struct undo_token { int cmd_oscmd(struct cmd_token *,int,unsigned long,unsigned long,char *); int buff_insert_from_buffer_with_undo( struct cmd_token *, struct buff_header *,unsigned long,struct buff_header *,unsigned long,size_t); -int buff_delete_with_undo( struct cmd_token *,struct buff_header *,unsigned long,long); +int buff_delete_with_undo( struct cmd_token *,struct buff_header *,unsigned long,unsigned long); int buff_insert_with_undo( struct cmd_token *, struct buff_header *,unsigned long,char *,unsigned long); int rename_edit_buffer(struct buff_header *,char *,struct cmd_token *); |