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.
This commit is contained in:
2026-03-02 12:07:11 +01:00
parent bbdd0143e3
commit 53ea58725e

View File

@@ -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;