Ignore:
Timestamp:
Apr 30, 2007, 1:13:49 AM (18 years ago)
Author:
bird
Message:

Applied bash31-006

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/essentials/app-shells/bash/lib/readline/terminal.c

    r3231 r3241  
    123123
    124124/* Non-zero means the terminal can auto-wrap lines. */
    125 int _rl_term_autowrap;
     125int _rl_term_autowrap = -1;
    126126
    127127/* Non-zero means that this terminal has a meta key. */
     
    275275     int rows, cols;
    276276{
     277  if (_rl_term_autowrap == -1)
     278    _rl_init_terminal_io (rl_terminal_name);
     279
    277280  if (rows > 0)
    278281    _rl_screenheight = rows;
Note: See TracChangeset for help on using the changeset viewer.