diff options
Diffstat (limited to 'src/nvim/undo.c')
-rw-r--r-- | src/nvim/undo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/undo.c b/src/nvim/undo.c index 06dc325fea..e67c5f2aba 100644 --- a/src/nvim/undo.c +++ b/src/nvim/undo.c @@ -289,7 +289,7 @@ int u_savedel(linenr_T lnum, long nlines) int undo_allowed(void) { /* Don't allow changes when 'modifiable' is off. */ - if (!curbuf->b_p_ma) { + if (!MODIFIABLE(curbuf)) { EMSG(_(e_modifiable)); return FALSE; } |