On 4/28/16 11:49 AM, David Kaspar [Dee'Kej] wrote: > I'm going to insert the missing verb into that sentence ("remove") and > answer "yes, we're going to try it and see how it goes." > > Yes, you have assumed it right that I missed the word "remove"... :) > > And I think it should be possible to test this change at least in Fedora > by its users. I think if it would break something importan, we will find > out quickly.
Patch attached. I'm going for it all and turning off interrupt_immediately too. -- ``The lyf so short, the craft so long to lerne.'' - Chaucer ``Ars longa, vita brevis'' - Hippocrates Chet Ramey, ITS, CWRU c...@case.edu http://cnswww.cns.cwru.edu/~chet/
*** ../bash-4.3-patched/general.c 2014-01-30 16:46:15.000000000 -0500 --- general.c 2016-04-28 13:22:27.000000000 -0400 *************** *** 984,987 **** --- 1040,1044 ---- char *ret; + #if 0 old_immed = interrupt_immediately; old_term = terminate_immediately; *************** *** 993,996 **** --- 1050,1054 ---- interrupt_immediately = 1; terminate_immediately = 1; + #endif tilde_additional_prefixes = assign_p == 0 ? (char **)0 *************** *** 1002,1007 **** --- 1060,1067 ---- ret = r ? tilde_expand (s) : savestring (s); + #if 0 interrupt_immediately = old_immed; terminate_immediately = old_term; + #endif QUIT;