Remove a variable that is set but unused.
git-svn-id: svn://svn.code.sf.net/p/bitchx/code/trunk@496 13b04d17-f746-0410-82c6-800466cd88b0
This commit is contained in:
@@ -706,11 +706,9 @@ BUILT_IN_KEYBINDING(input_end_of_line)
|
|||||||
BUILT_IN_KEYBINDING(input_delete_to_previous_space)
|
BUILT_IN_KEYBINDING(input_delete_to_previous_space)
|
||||||
{
|
{
|
||||||
int old_pos;
|
int old_pos;
|
||||||
char c;
|
|
||||||
|
|
||||||
cursor_to_input();
|
cursor_to_input();
|
||||||
old_pos = THIS_POS;
|
old_pos = THIS_POS;
|
||||||
c = THIS_CHAR;
|
|
||||||
|
|
||||||
while (!my_isspace(THIS_CHAR) && THIS_POS >= MIN_POS)
|
while (!my_isspace(THIS_CHAR) && THIS_POS >= MIN_POS)
|
||||||
THIS_POS--;
|
THIS_POS--;
|
||||||
|
|||||||
Reference in New Issue
Block a user