mirror of
https://github.com/neovim/neovim.git
synced 2025-09-24 12:08:33 +00:00
src: Misc. cleanup
These macros (and global) haven't been used since
3baba1e7bc
This commit is contained in:
@@ -1048,10 +1048,6 @@ EXTERN int typebuf_was_filled INIT(= FALSE); /* received text from client
|
|||||||
or from feedkeys() */
|
or from feedkeys() */
|
||||||
|
|
||||||
|
|
||||||
#if defined(UNIX)
|
|
||||||
EXTERN int term_is_xterm INIT(= FALSE); /* xterm-like 'term' */
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef BACKSLASH_IN_FILENAME
|
#ifdef BACKSLASH_IN_FILENAME
|
||||||
EXTERN char psepc INIT(= '\\'); /* normal path separator character */
|
EXTERN char psepc INIT(= '\\'); /* normal path separator character */
|
||||||
EXTERN char psepcN INIT(= '/'); /* abnormal path separator character */
|
EXTERN char psepcN INIT(= '/'); /* abnormal path separator character */
|
||||||
|
@@ -291,8 +291,6 @@ static struct key_name_entry {
|
|||||||
{0, NULL}
|
{0, NULL}
|
||||||
};
|
};
|
||||||
|
|
||||||
#define KEY_NAMES_TABLE_LEN ARRAY_SIZE(key_names_table)
|
|
||||||
|
|
||||||
static struct mousetable {
|
static struct mousetable {
|
||||||
int pseudo_code; /* Code for pseudo mouse event */
|
int pseudo_code; /* Code for pseudo mouse event */
|
||||||
int button; /* Which mouse button is it? */
|
int button; /* Which mouse button is it? */
|
||||||
|
@@ -6415,18 +6415,6 @@ static void win_rest_invalid(win_T *wp)
|
|||||||
* screen changes, and in the meantime, everything still works.
|
* screen changes, and in the meantime, everything still works.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
|
||||||
* types for inserting or deleting lines
|
|
||||||
*/
|
|
||||||
#define USE_T_CAL 1
|
|
||||||
#define USE_T_CDL 2
|
|
||||||
#define USE_T_AL 3
|
|
||||||
#define USE_T_CE 4
|
|
||||||
#define USE_T_DL 5
|
|
||||||
#define USE_T_SR 6
|
|
||||||
#define USE_NL 7
|
|
||||||
#define USE_T_CD 8
|
|
||||||
#define USE_REDRAW 9
|
|
||||||
|
|
||||||
// insert lines on the screen and update ScreenLines[]
|
// insert lines on the screen and update ScreenLines[]
|
||||||
// 'end' is the line after the scrolled part. Normally it is Rows.
|
// 'end' is the line after the scrolled part. Normally it is Rows.
|
||||||
|
Reference in New Issue
Block a user