From d2acdac901af63abaf38f6c951cc2280967c3f3e Mon Sep 17 00:00:00 2001 From: "R. Timothy Edwards" Date: Thu, 21 Aug 2025 10:44:24 -0400 Subject: [PATCH] Corrected an error accidentally introduced a few commits ago in (commit 4084a6a246c013090939959d19b925a7c022c024) in which a misplaced close-brace altered the way that "getcell" handles some orientation cases. Thanks to Sylvain Munaut for discovering the error. --- VERSION | 2 +- commands/CmdCD.c | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/VERSION b/VERSION index 5c0b29af..2e5d8678 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -8.3.544 +8.3.545 diff --git a/commands/CmdCD.c b/commands/CmdCD.c index 6419ca87..b59d4280 100644 --- a/commands/CmdCD.c +++ b/commands/CmdCD.c @@ -5239,11 +5239,12 @@ default_action: } av += 2; ac -= 2; - } - GeoTransPoint(tx_cell, &editPoint, &locp); - GeoTranslateTrans(tx_cell, editPoint.p_x - locp.p_x, + + GeoTransPoint(tx_cell, &editPoint, &locp); + GeoTranslateTrans(tx_cell, editPoint.p_x - locp.p_x, editPoint.p_y - locp.p_y, &trans_cell); + } hasTrans = TRUE; break; case IDX_90: /* "90" */