]> git.pld-linux.org Git - packages/bash.git/blame - bash205b-001
- rel up
[packages/bash.git] / bash205b-001
CommitLineData
ca3cd23c 1 BASH PATCH REPORT
2 =================
3
4Bash-Release: 2.05b
5Patch-ID: bash205b-001
6
7Bug-Reported-by: taviso@sdf.lonestar.org
8Bug-Reference-ID: <200208021107.g72B723d021352@darkstar.example.net>
9Bug-Reference-URL: http://mail.gnu.org/pipermail/bug-bash/2002-August/004980.html
10
11Bug-Description:
12
13Bash goes into an infinite loop and eventually crashes with a SIGSEGV
14when some keys on the numeric keypad are pressed, possibly in combination
15with the shift key.
16
17Patch:
18
19*** ../bash-2.05b/lib/readline/bind.c Thu Jan 24 11:15:52 2002
20--- lib/readline/bind.c Wed Jul 31 09:11:18 2002
21***************
22*** 312,316 ****
23 and the function bound to `a' to be executed when the user
24 types `abx', leaving `bx' in the input queue. */
25! if (k.function /* && k.type == ISFUNC */)
26 {
27 map[ANYOTHERKEY] = k;
28--- 312,316 ----
29 and the function bound to `a' to be executed when the user
30 types `abx', leaving `bx' in the input queue. */
31! if (k.function && ((k.type == ISFUNC && k.function != rl_do_lowercase_version) || k.type == ISMACR))
32 {
33 map[ANYOTHERKEY] = k;
This page took 0.09016 seconds and 4 git commands to generate.