diff options
| -rw-r--r-- | text.c | 2 | ||||
| -rw-r--r-- | text.h | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1375,7 +1375,7 @@ void text_free(Text *txt) { free(txt); } -bool text_modified(Text *txt) { +bool text_modified(const Text *txt) { return txt->saved_revision != txt->history; } @@ -132,7 +132,7 @@ size_t text_size(Text*); */ struct stat text_stat(const Text*); /** Query whether the text contains any unsaved modifications. */ -bool text_modified(Text*); +bool text_modified(const Text*); /** * @} * @defgroup modify |
