From 53ea58725e89f0767204e88555ab0f3b28d3cdfc Mon Sep 17 00:00:00 2001 From: Daneel Date: Mon, 2 Mar 2026 12:07:11 +0100 Subject: [PATCH] Fix patch 0002: restore closing ')' after evil-line EQ removal Removing the evil-mode EQ conditions left the if() without its closing paren. Fix: if (EQ (cmd, Qns_ax_next_line) || EQ (cmd, Qns_ax_dired_next_line)) <- add ')' Same for previous_line. Verified: all 9 patches apply and build. --- ...ns-implement-buffer-accessibility-element-core-proto.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/patches/0002-ns-implement-buffer-accessibility-element-core-proto.patch b/patches/0002-ns-implement-buffer-accessibility-element-core-proto.patch index 0be0b10..08db4ac 100644 --- a/patches/0002-ns-implement-buffer-accessibility-element-core-proto.patch +++ b/patches/0002-ns-implement-buffer-accessibility-element-core-proto.patch @@ -150,14 +150,14 @@ index 852e7f9..3e1ac74 100644 + Lisp_Object cmd = Vthis_command; + /* Forward line commands. */ + if (EQ (cmd, Qns_ax_next_line) -+ || EQ (cmd, Qns_ax_dired_next_line) ++ || EQ (cmd, Qns_ax_dired_next_line)) + { + if (which) *which = 1; + return true; + } + /* Backward line commands. */ + if (EQ (cmd, Qns_ax_previous_line) -+ || EQ (cmd, Qns_ax_dired_previous_line) ++ || EQ (cmd, Qns_ax_dired_previous_line)) + { + if (which) *which = -1; + return true;