patch 9.1.1487: :cl doesn't invoke :clist
Commit:
https://github.com/vim/vim/commit/76866af3a5b3047c2f8a8c2160a878b5d249a7e1
Author: Hirohito Higashi <[email protected]>
Date: Sat Jun 28 18:28:25 2025 +0200
patch 9.1.1487: :cl doesn't invoke :clist
Problem: :cl doesn't invoke :clist
(after v9.1.1485)
Solution: fix order of definition in ex_cmds.h
(Hirohito Higashi)
closes: #17619
Signed-off-by: Hirohito Higashi <[email protected]>
Signed-off-by: Christian Brabandt <[email protected]>
diff --git a/src/ex_cmds.h b/src/ex_cmds.h
index a42ad7ddf..f91c37d0b 100644
--- a/src/ex_cmds.h
+++ b/src/ex_cmds.h
@@ -350,12 +350,12 @@ EXCMD(CMD_checktime, "checktime", ex_checktime,
EXCMD(CMD_chistory, "chistory", qf_history,
EX_RANGE|EX_COUNT|EX_TRLBAR,
ADDR_UNSIGNED),
-EXCMD(CMD_clipreset, "clipreset", ex_clipreset,
- EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK,
- ADDR_NONE),
EXCMD(CMD_clist, "clist", qf_list,
EX_BANG|EX_EXTRA|EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK,
ADDR_NONE),
+EXCMD(CMD_clipreset, "clipreset", ex_clipreset,
+ EX_TRLBAR|EX_CMDWIN|EX_LOCK_OK,
+ ADDR_NONE),
EXCMD(CMD_clast, "clast", ex_cc,
EX_RANGE|EX_COUNT|EX_TRLBAR|EX_BANG,
ADDR_UNSIGNED),
diff --git a/src/version.c b/src/version.c
index f5de6ff29..3aaaf4483 100644
--- a/src/version.c
+++ b/src/version.c
@@ -719,6 +719,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1487,
/**/
1486,
/**/
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion visit
https://groups.google.com/d/msgid/vim_dev/E1uVYfm-008j0j-VD%40256bit.org.