Fixed a bug in the line editor: characters could be erased before the beginning of the string (thanks Martin for reporting this).

This commit is contained in:
Frederic Culot 2009-07-05 16:28:03 +00:00
parent 6d67689b4f
commit bcd80d3dfb
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2009-07-05 Frederic Culot <frederic@culot.org>
* src/utils.c (getstring): prevent character deletion before the
beginning of the string (thanks Martin for reporting the bug)
2009-06-28 Frederic Culot <frederic@culot.org>
* src/io.c (io_save_apts, io_save_conf, io_save_todo)

View File

@ -1,4 +1,4 @@
/* $calcurse: utils.c,v 1.71 2009/06/23 08:52:07 culot Exp $ */
/* $calcurse: utils.c,v 1.72 2009/07/05 16:28:04 culot Exp $ */
/*
* Calcurse - text-based organizer
@ -327,7 +327,7 @@ getstring (WINDOW *win, char *str, int l, int x, int y)
case 330:
case 127:
case CTRL ('H'):
if (len > 0)
if (len > 0 && newpos > x)
{
--newpos;
--len;