Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 69407 | Differences between
and this patch

Collapse All | Expand All

(-)lib/readline/terminal.c.orig (+6 lines)
Lines 148-153 Link Here
148
/* Insert key */
148
/* Insert key */
149
static char *_rl_term_kI;
149
static char *_rl_term_kI;
150
150
151
/* The key sequence sent by the Delete key, if any. */
152
static char *_rl_term_kD;
153
154
151
/* Cursor control */
155
/* Cursor control */
152
static char *_rl_term_vs;	/* very visible */
156
static char *_rl_term_vs;	/* very visible */
153
static char *_rl_term_ve;	/* normal */
157
static char *_rl_term_ve;	/* normal */
Lines 314-319 Link Here
314
  { "ic", &_rl_term_ic },
318
  { "ic", &_rl_term_ic },
315
  { "im", &_rl_term_im },
319
  { "im", &_rl_term_im },
316
  { "@", &_rl_term_kH },	/* home down ?? */
320
  { "@", &_rl_term_kH },	/* home down ?? */
321
  { "kD", &_rl_term_kD },
317
  { "kI", &_rl_term_kI },	/* insert */
322
  { "kI", &_rl_term_kI },	/* insert */
318
  { "kd", &_rl_term_kd },
323
  { "kd", &_rl_term_kd },
319
  { "ke", &_rl_term_ke },	/* end keypad mode */
324
  { "ke", &_rl_term_ke },	/* end keypad mode */
Lines 492-497 Link Here
492
497
493
  rl_bind_keyseq_if_unbound (_rl_term_kh, rl_beg_of_line);	/* Home */
498
  rl_bind_keyseq_if_unbound (_rl_term_kh, rl_beg_of_line);	/* Home */
494
  rl_bind_keyseq_if_unbound (_rl_term_at7, rl_end_of_line);	/* End */
499
  rl_bind_keyseq_if_unbound (_rl_term_at7, rl_end_of_line);	/* End */
500
  rl_bind_keyseq_if_unbound (_rl_term_kD, rl_delete);          /* Delete */
495
501
496
  _rl_keymap = xkeymap;
502
  _rl_keymap = xkeymap;
497
}
503
}

Return to bug 69407