Repository :
https://github.com/FarGroup/FarManager
On branch : master
Link :
https://github.com/FarGroup/FarManager/commit/870ca90470beba3984637eb208ab835fd3457058
>---------------------------------------------------------------
commit 870ca90470beba3984637eb208ab835fd3457058
Author: Alex Alabuzhev <
alab...@gmail.com>
Date: Sat Jan 17 23:27:47 2026 +0000
Correction of 6633.3
>---------------------------------------------------------------
870ca90470beba3984637eb208ab835fd3457058
far/changelog | 5 +++++
far/editor.cpp | 2 +-
far/vbuild.m4 | 2 +-
3 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/far/changelog b/far/changelog
index 97cfad86c..2382aad4e 100644
--- a/far/changelog
+++ b/far/changelog
@@ -1,3 +1,8 @@
+--------------------------------------------------------------------------------
+drkns 2026-01-17 23:27:18+00:00 - build 6634
+
+1. Correction of 6633.3.
+
--------------------------------------------------------------------------------
drkns 2026-01-17 23:11:32+00:00 - build 6633
diff --git a/far/editor.cpp b/far/editor.cpp
index 51eccccf5..f3498b0b4 100644
--- a/far/editor.cpp
+++ b/far/editor.cpp
@@ -4772,7 +4772,7 @@ void Editor::AddUndoData(undo_type Type, string_view const Str, eol Eol, int Str
case undo_type::edit:
{
if (!m_Flags.Check(FEDITOR_NEWUNDO) && PrevUndo->m_Type == undo_type::edit && StrNum == PrevUndo->m_StrNum &&
- m_WithinUndoBlock || (std::abs(StrPos-PrevUndo->m_StrPos)<=1 || abs(StrPos-LastChangeStrPos)<=1))
+ (m_WithinUndoBlock || std::abs(StrPos-PrevUndo->m_StrPos)<=1 || abs(StrPos-LastChangeStrPos)<=1))
{
LastChangeStrPos=StrPos;
return;
diff --git a/far/vbuild.m4 b/far/vbuild.m4
index 9444a45e4..15506cfe4 100644
--- a/far/vbuild.m4
+++ b/far/vbuild.m4
@@ -1 +1 @@
-6633
+6634