View | Details | Raw Unified | Return to bug 16218
Collapse All | Expand All

(-)gnome-pty-helper.c (-1 / +7 lines)
Lines 454-460 Link Here
454
454
455
	/* These two may overlap so set them first */
455
	/* These two may overlap so set them first */
456
	term.c_cc[VTIME] =  0;
456
	term.c_cc[VTIME] =  0;
457
	term.c_cc[VMIN] = 0;
457
	term.c_cc[VMIN] = 1;
458
	
458
	
459
	/*
459
	/*
460
	 * Now set the characters. This is of course a religious matter
460
	 * Now set the characters. This is of course a religious matter
Lines 484-489 Link Here
484
#ifdef VREPRINT	
484
#ifdef VREPRINT	
485
	term.c_cc[VREPRINT] = 'R'-64;
485
	term.c_cc[VREPRINT] = 'R'-64;
486
#endif
486
#endif
487
#ifdef VSTATUS
488
	term.c_cc[VDSUSP] = 'T'-64;
489
#endif
487
#ifdef VDISCARD	
490
#ifdef VDISCARD	
488
	term.c_cc[VDISCARD] = 'O'-64;
491
	term.c_cc[VDISCARD] = 'O'-64;
489
#endif
492
#endif
Lines 492-497 Link Here
492
#endif	
495
#endif	
493
#ifdef VLNEXT
496
#ifdef VLNEXT
494
	term.c_cc[VLNEXT] =  'V'-64;
497
	term.c_cc[VLNEXT] =  'V'-64;
498
#endif
499
#ifdef VDSUSP
500
	term.c_cc[VDSUSP] = 'Y'-64;
495
#endif
501
#endif
496
#ifdef VEOL2	
502
#ifdef VEOL2	
497
	term.c_cc[VEOL2] = 0;
503
	term.c_cc[VEOL2] = 0;

Return to bug 16218