diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2014-09-13 22:35:26 +0200 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2014-09-13 22:35:26 +0200 |
| commit | 9da490af05b2aac772f0bdbb934dd313c1271749 (patch) | |
| tree | c21aa06e029e6d725baed9283e44990d22e38d72 /text.h | |
| parent | c17ca10e11db30f4b4924b69dbf3b1693025d4dc (diff) | |
| download | vis-9da490af05b2aac772f0bdbb934dd313c1271749.tar.gz vis-9da490af05b2aac772f0bdbb934dd313c1271749.tar.xz | |
Rename text_insert_raw to text_insert
Diffstat (limited to 'text.h')
| -rw-r--r-- | text.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -33,8 +33,7 @@ Text *text_load(const char *file); const char *text_filename_get(Text*); /* associate a filename with the yet unnamed buffer */ void text_filename_set(Text*, const char *filename); -bool text_insert(Text*, size_t pos, const char *data); -bool text_insert_raw(Text*, size_t pos, const char *data, size_t len); +bool text_insert(Text*, size_t pos, const char *data, size_t len); bool text_delete(Text*, size_t pos, size_t len); void text_snapshot(Text*); /* undo/redos to the last snapshoted state. returns the position where |
