From 9071ed8107244e0c56a16b77d1c28e975cb21dd2 Mon Sep 17 00:00:00 2001 From: Christian Brabandt Date: Thu, 15 Feb 2024 20:17:37 +0100 Subject: patch 9.1.0113: duplicate code when cleaning undo stack Problem: duplicate code when cleaning undo stack Solution: refactor undo cleanup into a single public function related: #13928 Signed-off-by: Christian Brabandt --- src/fileio.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/fileio.c') diff --git a/src/fileio.c b/src/fileio.c index 180fe3906c..d293d713d3 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -4514,10 +4514,7 @@ buf_reload(buf_T *buf, int orig_mode, int reload_options) // Mark the buffer as unmodified and free undo info. unchanged(buf, TRUE, TRUE); if ((flags & READ_KEEP_UNDO) == 0) - { - u_blockfree(buf); - u_clearall(buf); - } + u_clearallandblockfree(buf); else { // Mark all undo states as changed. -- cgit v1.2.3