mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -04:00
updated for version 7.0184
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
*version7.txt* For Vim version 7.0aa. Last change: 2006 Jan 20
|
*version7.txt* For Vim version 7.0aa. Last change: 2006 Jan 21
|
||||||
|
|
||||||
|
|
||||||
VIM REFERENCE MANUAL by Bram Moolenaar
|
VIM REFERENCE MANUAL by Bram Moolenaar
|
||||||
@@ -1596,4 +1596,7 @@ autocommands were triggered to notify about the change in the buffer list.
|
|||||||
In the quickfix buffer 'bufhidden' was set to "delete", which caused closing
|
In the quickfix buffer 'bufhidden' was set to "delete", which caused closing
|
||||||
the quickfix window to leave an unlisted "No Name" buffer behind every time.
|
the quickfix window to leave an unlisted "No Name" buffer behind every time.
|
||||||
|
|
||||||
|
Win32: when using two screens of different size, setting 'lines' to a large
|
||||||
|
value didn't fill the whole screen. (SungHyun Nam)
|
||||||
|
|
||||||
vim:tw=78:ts=8:ft=help:norl:
|
vim:tw=78:ts=8:ft=help:norl:
|
||||||
|
@@ -13579,8 +13579,10 @@ f_setqflist(argvars, rettv)
|
|||||||
typval_T *argvars;
|
typval_T *argvars;
|
||||||
typval_T *rettv;
|
typval_T *rettv;
|
||||||
{
|
{
|
||||||
|
#ifdef FEAT_QUICKFIX
|
||||||
char_u *act;
|
char_u *act;
|
||||||
int action = ' ';
|
int action = ' ';
|
||||||
|
#endif
|
||||||
|
|
||||||
rettv->vval.v_number = -1;
|
rettv->vval.v_number = -1;
|
||||||
|
|
||||||
|
@@ -1288,7 +1288,7 @@ EXTERN char_u e_invexpr2[] INIT(= N_("E15: Invalid expression: %s"));
|
|||||||
#endif
|
#endif
|
||||||
EXTERN char_u e_invrange[] INIT(= N_("E16: Invalid range"));
|
EXTERN char_u e_invrange[] INIT(= N_("E16: Invalid range"));
|
||||||
EXTERN char_u e_invcmd[] INIT(= N_("E476: Invalid command"));
|
EXTERN char_u e_invcmd[] INIT(= N_("E476: Invalid command"));
|
||||||
#if defined(UNIX) || (defined(FEAT_SYN_HL) && defined(FEAT_MBYTE))
|
#if defined(UNIX) || defined(FEAT_SYN_HL)
|
||||||
EXTERN char_u e_isadir2[] INIT(= N_("E17: \"%s\" is a directory"));
|
EXTERN char_u e_isadir2[] INIT(= N_("E17: \"%s\" is a directory"));
|
||||||
#endif
|
#endif
|
||||||
#ifdef FEAT_LIBCALL
|
#ifdef FEAT_LIBCALL
|
||||||
|
@@ -93,11 +93,13 @@ struct PyMethodDef { int a; };
|
|||||||
# define PyInt_FromLong dll_PyInt_FromLong
|
# define PyInt_FromLong dll_PyInt_FromLong
|
||||||
# define PyInt_Type (*dll_PyInt_Type)
|
# define PyInt_Type (*dll_PyInt_Type)
|
||||||
# define PyList_GetItem dll_PyList_GetItem
|
# define PyList_GetItem dll_PyList_GetItem
|
||||||
|
# define PyList_Append dll_PyList_Append
|
||||||
# define PyList_New dll_PyList_New
|
# define PyList_New dll_PyList_New
|
||||||
# define PyList_SetItem dll_PyList_SetItem
|
# define PyList_SetItem dll_PyList_SetItem
|
||||||
# define PyList_Size dll_PyList_Size
|
# define PyList_Size dll_PyList_Size
|
||||||
# define PyList_Type (*dll_PyList_Type)
|
# define PyList_Type (*dll_PyList_Type)
|
||||||
# define PyImport_ImportModule dll_PyImport_ImportModule
|
# define PyImport_ImportModule dll_PyImport_ImportModule
|
||||||
|
# define PyDict_New dll_PyDict_New
|
||||||
# define PyDict_GetItemString dll_PyDict_GetItemString
|
# define PyDict_GetItemString dll_PyDict_GetItemString
|
||||||
# define PyModule_GetDict dll_PyModule_GetDict
|
# define PyModule_GetDict dll_PyModule_GetDict
|
||||||
# define PyRun_SimpleString dll_PyRun_SimpleString
|
# define PyRun_SimpleString dll_PyRun_SimpleString
|
||||||
@@ -149,11 +151,13 @@ static long(*dll_PyInt_AsLong)(PyObject *);
|
|||||||
static PyObject*(*dll_PyInt_FromLong)(long);
|
static PyObject*(*dll_PyInt_FromLong)(long);
|
||||||
static PyTypeObject* dll_PyInt_Type;
|
static PyTypeObject* dll_PyInt_Type;
|
||||||
static PyObject*(*dll_PyList_GetItem)(PyObject *, int);
|
static PyObject*(*dll_PyList_GetItem)(PyObject *, int);
|
||||||
|
static PyObject*(*dll_PyList_Append)(PyObject *, PyObject *);
|
||||||
static PyObject*(*dll_PyList_New)(int size);
|
static PyObject*(*dll_PyList_New)(int size);
|
||||||
static int(*dll_PyList_SetItem)(PyObject *, int, PyObject *);
|
static int(*dll_PyList_SetItem)(PyObject *, int, PyObject *);
|
||||||
static int(*dll_PyList_Size)(PyObject *);
|
static int(*dll_PyList_Size)(PyObject *);
|
||||||
static PyTypeObject* dll_PyList_Type;
|
static PyTypeObject* dll_PyList_Type;
|
||||||
static PyObject*(*dll_PyImport_ImportModule)(const char *);
|
static PyObject*(*dll_PyImport_ImportModule)(const char *);
|
||||||
|
static PyObject*(*dll_PyDict_New)(void);
|
||||||
static PyObject*(*dll_PyDict_GetItemString)(PyObject *, const char *);
|
static PyObject*(*dll_PyDict_GetItemString)(PyObject *, const char *);
|
||||||
static PyObject*(*dll_PyModule_GetDict)(PyObject *);
|
static PyObject*(*dll_PyModule_GetDict)(PyObject *);
|
||||||
static int(*dll_PyRun_SimpleString)(char *);
|
static int(*dll_PyRun_SimpleString)(char *);
|
||||||
@@ -227,12 +231,14 @@ static struct
|
|||||||
{"PyInt_FromLong", (PYTHON_PROC*)&dll_PyInt_FromLong},
|
{"PyInt_FromLong", (PYTHON_PROC*)&dll_PyInt_FromLong},
|
||||||
{"PyInt_Type", (PYTHON_PROC*)&dll_PyInt_Type},
|
{"PyInt_Type", (PYTHON_PROC*)&dll_PyInt_Type},
|
||||||
{"PyList_GetItem", (PYTHON_PROC*)&dll_PyList_GetItem},
|
{"PyList_GetItem", (PYTHON_PROC*)&dll_PyList_GetItem},
|
||||||
|
{"PyList_Append", (PYTHON_PROC*)&dll_PyList_Append},
|
||||||
{"PyList_New", (PYTHON_PROC*)&dll_PyList_New},
|
{"PyList_New", (PYTHON_PROC*)&dll_PyList_New},
|
||||||
{"PyList_SetItem", (PYTHON_PROC*)&dll_PyList_SetItem},
|
{"PyList_SetItem", (PYTHON_PROC*)&dll_PyList_SetItem},
|
||||||
{"PyList_Size", (PYTHON_PROC*)&dll_PyList_Size},
|
{"PyList_Size", (PYTHON_PROC*)&dll_PyList_Size},
|
||||||
{"PyList_Type", (PYTHON_PROC*)&dll_PyList_Type},
|
{"PyList_Type", (PYTHON_PROC*)&dll_PyList_Type},
|
||||||
{"PyImport_ImportModule", (PYTHON_PROC*)&dll_PyImport_ImportModule},
|
{"PyImport_ImportModule", (PYTHON_PROC*)&dll_PyImport_ImportModule},
|
||||||
{"PyDict_GetItemString", (PYTHON_PROC*)&dll_PyDict_GetItemString},
|
{"PyDict_GetItemString", (PYTHON_PROC*)&dll_PyDict_GetItemString},
|
||||||
|
{"PyDict_New", (PYTHON_PROC*)&dll_PyDict_New},
|
||||||
{"PyModule_GetDict", (PYTHON_PROC*)&dll_PyModule_GetDict},
|
{"PyModule_GetDict", (PYTHON_PROC*)&dll_PyModule_GetDict},
|
||||||
{"PyRun_SimpleString", (PYTHON_PROC*)&dll_PyRun_SimpleString},
|
{"PyRun_SimpleString", (PYTHON_PROC*)&dll_PyRun_SimpleString},
|
||||||
{"PyString_AsString", (PYTHON_PROC*)&dll_PyString_AsString},
|
{"PyString_AsString", (PYTHON_PROC*)&dll_PyString_AsString},
|
||||||
|
Reference in New Issue
Block a user