diff options
| -rw-r--r-- | text.c | 3 | ||||
| -rw-r--r-- | text.h | 2 |
2 files changed, 2 insertions, 3 deletions
@@ -745,12 +745,11 @@ bool text_delete_range(Text *txt, const Filerange *r) { /* preserve the current text content such that it can be restored by * means of undo/redo operations */ -bool text_snapshot(Text *txt) { +void text_snapshot(Text *txt) { if (txt->current_revision) txt->last_revision = txt->current_revision; txt->current_revision = NULL; txt->cache = NULL; - return true; } @@ -159,7 +159,7 @@ VIS_INTERNAL bool text_appendf(Text *txt, const char *format, ...) __attribute__ /** * Create a text snapshot, that is a vertex in the history graph. */ -VIS_INTERNAL bool text_snapshot(Text*); +VIS_INTERNAL void text_snapshot(Text*); /** * Revert to previous snapshot along the main branch. * @rst |
