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:
@@ -150,14 +150,14 @@ index 852e7f9..3e1ac74 100644
|
|||||||
+ Lisp_Object cmd = Vthis_command;
|
+ Lisp_Object cmd = Vthis_command;
|
||||||
+ /* Forward line commands. */
|
+ /* Forward line commands. */
|
||||||
+ if (EQ (cmd, Qns_ax_next_line)
|
+ 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;
|
+ if (which) *which = 1;
|
||||||
+ return true;
|
+ return true;
|
||||||
+ }
|
+ }
|
||||||
+ /* Backward line commands. */
|
+ /* Backward line commands. */
|
||||||
+ if (EQ (cmd, Qns_ax_previous_line)
|
+ 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;
|
+ if (which) *which = -1;
|
||||||
+ return true;
|
+ return true;
|
||||||
|
|||||||
Reference in New Issue
Block a user