• R/O
  • SSH

vim: Commit

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


Commit MetaInfo

Revisióna420bba0d851093bb949070895a9dcf4c25e6c4f (tree)
Tiempo2006-01-22 07:16:51
Autorvimboss
Commitervimboss

Log Message

updated for version 7.0184

Cambiar Resumen

Diferencia incremental

diff -r 5ad3b5d4ecc0 -r a420bba0d851 runtime/doc/version7.txt
--- a/runtime/doc/version7.txt Sat Jan 21 22:12:51 2006 +0000
+++ b/runtime/doc/version7.txt Sat Jan 21 22:16:51 2006 +0000
@@ -1,4 +1,4 @@
1-*version7.txt* For Vim version 7.0aa. Last change: 2006 Jan 20
1+*version7.txt* For Vim version 7.0aa. Last change: 2006 Jan 21
22
33
44 VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1596,4 +1596,7 @@
15961596 In the quickfix buffer 'bufhidden' was set to "delete", which caused closing
15971597 the quickfix window to leave an unlisted "No Name" buffer behind every time.
15981598
1599+Win32: when using two screens of different size, setting 'lines' to a large
1600+value didn't fill the whole screen. (SungHyun Nam)
1601+
15991602 vim:tw=78:ts=8:ft=help:norl:
diff -r 5ad3b5d4ecc0 -r a420bba0d851 src/eval.c
--- a/src/eval.c Sat Jan 21 22:12:51 2006 +0000
+++ b/src/eval.c Sat Jan 21 22:16:51 2006 +0000
@@ -13579,8 +13579,10 @@
1357913579 typval_T *argvars;
1358013580 typval_T *rettv;
1358113581 {
13582+#ifdef FEAT_QUICKFIX
1358213583 char_u *act;
1358313584 int action = ' ';
13585+#endif
1358413586
1358513587 rettv->vval.v_number = -1;
1358613588
diff -r 5ad3b5d4ecc0 -r a420bba0d851 src/ex_cmds.c
--- a/src/ex_cmds.c Sat Jan 21 22:12:51 2006 +0000
+++ b/src/ex_cmds.c Sat Jan 21 22:16:51 2006 +0000
@@ -2637,7 +2637,7 @@
26372637 if (!eap->forceit && !eap->append)
26382638 {
26392639 #ifdef UNIX
2640- /* with UNIX it is possible to open a directory */
2640+ /* with UNIX it is possible to open a directory */
26412641 if (mch_isdir(ffname))
26422642 {
26432643 EMSG2(_(e_isadir2), ffname);
diff -r 5ad3b5d4ecc0 -r a420bba0d851 src/globals.h
--- a/src/globals.h Sat Jan 21 22:12:51 2006 +0000
+++ b/src/globals.h Sat Jan 21 22:16:51 2006 +0000
@@ -1288,7 +1288,7 @@
12881288 #endif
12891289 EXTERN char_u e_invrange[] INIT(= N_("E16: Invalid range"));
12901290 EXTERN char_u e_invcmd[] INIT(= N_("E476: Invalid command"));
1291-#if defined(UNIX) || (defined(FEAT_SYN_HL) && defined(FEAT_MBYTE))
1291+#if defined(UNIX) || defined(FEAT_SYN_HL)
12921292 EXTERN char_u e_isadir2[] INIT(= N_("E17: \"%s\" is a directory"));
12931293 #endif
12941294 #ifdef FEAT_LIBCALL
diff -r 5ad3b5d4ecc0 -r a420bba0d851 src/if_python.c
--- a/src/if_python.c Sat Jan 21 22:12:51 2006 +0000
+++ b/src/if_python.c Sat Jan 21 22:16:51 2006 +0000
@@ -93,11 +93,13 @@
9393 # define PyInt_FromLong dll_PyInt_FromLong
9494 # define PyInt_Type (*dll_PyInt_Type)
9595 # define PyList_GetItem dll_PyList_GetItem
96+# define PyList_Append dll_PyList_Append
9697 # define PyList_New dll_PyList_New
9798 # define PyList_SetItem dll_PyList_SetItem
9899 # define PyList_Size dll_PyList_Size
99100 # define PyList_Type (*dll_PyList_Type)
100101 # define PyImport_ImportModule dll_PyImport_ImportModule
102+# define PyDict_New dll_PyDict_New
101103 # define PyDict_GetItemString dll_PyDict_GetItemString
102104 # define PyModule_GetDict dll_PyModule_GetDict
103105 # define PyRun_SimpleString dll_PyRun_SimpleString
@@ -149,11 +151,13 @@
149151 static PyObject*(*dll_PyInt_FromLong)(long);
150152 static PyTypeObject* dll_PyInt_Type;
151153 static PyObject*(*dll_PyList_GetItem)(PyObject *, int);
154+static PyObject*(*dll_PyList_Append)(PyObject *, PyObject *);
152155 static PyObject*(*dll_PyList_New)(int size);
153156 static int(*dll_PyList_SetItem)(PyObject *, int, PyObject *);
154157 static int(*dll_PyList_Size)(PyObject *);
155158 static PyTypeObject* dll_PyList_Type;
156159 static PyObject*(*dll_PyImport_ImportModule)(const char *);
160+static PyObject*(*dll_PyDict_New)(void);
157161 static PyObject*(*dll_PyDict_GetItemString)(PyObject *, const char *);
158162 static PyObject*(*dll_PyModule_GetDict)(PyObject *);
159163 static int(*dll_PyRun_SimpleString)(char *);
@@ -227,12 +231,14 @@
227231 {"PyInt_FromLong", (PYTHON_PROC*)&dll_PyInt_FromLong},
228232 {"PyInt_Type", (PYTHON_PROC*)&dll_PyInt_Type},
229233 {"PyList_GetItem", (PYTHON_PROC*)&dll_PyList_GetItem},
234+ {"PyList_Append", (PYTHON_PROC*)&dll_PyList_Append},
230235 {"PyList_New", (PYTHON_PROC*)&dll_PyList_New},
231236 {"PyList_SetItem", (PYTHON_PROC*)&dll_PyList_SetItem},
232237 {"PyList_Size", (PYTHON_PROC*)&dll_PyList_Size},
233238 {"PyList_Type", (PYTHON_PROC*)&dll_PyList_Type},
234239 {"PyImport_ImportModule", (PYTHON_PROC*)&dll_PyImport_ImportModule},
235240 {"PyDict_GetItemString", (PYTHON_PROC*)&dll_PyDict_GetItemString},
241+ {"PyDict_New", (PYTHON_PROC*)&dll_PyDict_New},
236242 {"PyModule_GetDict", (PYTHON_PROC*)&dll_PyModule_GetDict},
237243 {"PyRun_SimpleString", (PYTHON_PROC*)&dll_PyRun_SimpleString},
238244 {"PyString_AsString", (PYTHON_PROC*)&dll_PyString_AsString},
Show on old repository browser