Ignore:
Timestamp:
Jan 1, 2014, 12:47:38 AM (10 years ago)
Author:
Bruno Cornec
Message:
  • Update mindi-busybox to 1.21.1
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.2/mindi-busybox/scripts/kconfig/lxdialog/textbox.c

    r1765 r3232  
    3939    int i, x, y, cur_x, cur_y, fpos, key = 0;
    4040    int passed_end;
    41     char search_term[MAX_LEN + 1];
    4241    WINDOW *dialog, *text;
    43 
    44     search_term[0] = '\0';  /* no search term entered yet */
    4542
    4643    /* Open input file for reading */
     
    438435static void print_line(WINDOW * win, int row, int width)
    439436{
    440     int y, x;
    441437    char *line;
    442438
     
    447443    waddnstr(win, line, MIN(strlen(line), width - 2));
    448444
    449     getyx(win, y, x);
    450445    /* Clear 'residue' of previous line */
    451446#if OLD_NCURSES
    452447    {
    453448        int i;
     449        int y, x;
     450
     451        getyx(win, y, x);
    454452        for (i = 0; i < width - x; i++)
    455453            waddch(win, ' ');
Note: See TracChangeset for help on using the changeset viewer.