• R/O
  • SSH

vim: Commit

Mirror of the Vim source from https://github.com/vim/vim


Commit MetaInfo

Revisiónc3bd0a84e11ad1caf53402dbebc39ea8b01fc832 (tree)
Tiempo2006-11-22 03:36:05
Autorvimboss
Commitervimboss

Log Message

updated for version 7.0-167

Cambiar Resumen

Diferencia incremental

diff -r 65e0c2e3a352 -r c3bd0a84e11a src/eval.c
--- a/src/eval.c Tue Nov 21 10:43:23 2006 +0000
+++ b/src/eval.c Tue Nov 21 18:36:05 2006 +0000
@@ -18539,12 +18539,14 @@
1853918539
1854018540 if (!eap->skip)
1854118541 {
18542- /* Check the name of the function. */
18542+ /* Check the name of the function. Unless it's a dictionary function
18543+ * (that we are overwriting). */
1854318544 if (name != NULL)
1854418545 arg = name;
1854518546 else
1854618547 arg = fudi.fd_newkey;
18547- if (arg != NULL)
18548+ if (arg != NULL && (fudi.fd_di == NULL
18549+ || fudi.fd_di->di_tv.v_type != VAR_FUNC))
1854818550 {
1854918551 if (*arg == K_SPECIAL)
1855018552 j = 3;
diff -r 65e0c2e3a352 -r c3bd0a84e11a src/version.c
--- a/src/version.c Tue Nov 21 10:43:23 2006 +0000
+++ b/src/version.c Tue Nov 21 18:36:05 2006 +0000
@@ -667,6 +667,8 @@
667667 static int included_patches[] =
668668 { /* Add new patch number below this line */
669669 /**/
670+ 167,
671+/**/
670672 166,
671673 /**/
672674 165,
Show on old repository browser