Remove unused function cmdline_at_end.

This commit is contained in:
Thomas Wienecke 2014-04-10 19:34:35 +02:00
parent 487a66029c
commit 75d8b24060
2 changed files with 0 additions and 9 deletions

View File

@ -1978,14 +1978,6 @@ redraw:
return (char_u *)line_ga.ga_data;
}
/*
* Return TRUE if the cursor is at the end of the cmdline.
*/
int cmdline_at_end(void)
{
return ccline.cmdpos >= ccline.cmdlen;
}
/*
* Allocate a new command line buffer.
* Assigns the new buffer to ccline.cmdbuff and ccline.cmdbufflen.

View File

@ -11,7 +11,6 @@ int curbuf_locked(void);
int allbuf_locked(void);
char_u *getexline(int c, void *cookie, int indent);
char_u *getexmodeline(int promptc, void *cookie, int indent);
int cmdline_at_end(void);
void free_cmdline_buf(void);
void putcmdline(int c, int shift);
void unputcmdline(void);